Skip to content

Commit

Permalink
Fix
Browse files Browse the repository at this point in the history
  • Loading branch information
rohan-agarwal-coinbase committed Sep 27, 2024
1 parent 6584c17 commit e1a85d9
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions src/coinbase/staking_operation.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,12 +19,9 @@ export interface IStakingOperation {
getTransactions(): Transaction[];
getSignedVoluntaryExitMessages(): string[];
reload(): Promise<void>;
wait({
intervalSeconds,
timeoutSeconds,
}: {
intervalSeconds: number;
timeoutSeconds: number;
wait(options?: {
intervalSeconds?: number;
timeoutSeconds?: number;
}): Promise<StakingOperationModel>;
sign(key: ethers.Wallet): Promise<void>;
}
Expand Down

0 comments on commit e1a85d9

Please sign in to comment.