fix: add missing methods to IStore interface
This commit is contained in:
parent
bfb02263ef
commit
52aca21b78
|
@ -13,6 +13,12 @@ export interface IProver {
|
|||
|
||||
export interface IStore {
|
||||
addUpdate(period: number, update: LightClientUpdate): Promise<void>;
|
||||
|
||||
getUpdate(period: number): Uint8Array;
|
||||
|
||||
getCommittee(period: number): Uint8Array;
|
||||
|
||||
getCommitteeHashes(period: number, count: number): Uint8Array;
|
||||
}
|
||||
|
||||
export interface IVerifyingProvider {
|
||||
|
|
Loading…
Reference in New Issue