Skip to content

Commit

Permalink
Fix build error
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsonevv committed Nov 19, 2024
1 parent 0e33136 commit 5808436
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/core/src/lib/wallet/wallet.types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -221,7 +221,7 @@ interface BaseWalletBehaviour {
* Signs one or more NEAR Actions before sending to the network.
* The user must be signed in to call this method as there's at least charges for gas spent.
*/
signAndSendTransactionAsync(
signAndSendTransactionAsync?(
params: SignAndSendTransactionParams
): Promise<Uint8Array>;
/**
Expand Down Expand Up @@ -332,7 +332,7 @@ export type BrowserWalletBehaviour = Modify<
signAndSendTransaction(
params: BrowserWalletSignAndSendTransactionParams
): Promise<FinalExecutionOutcome | void>;
signAndSendTransactionAsync(
signAndSendTransactionAsync?(
params: BrowserWalletSignAndSendTransactionParams
): Promise<Uint8Array | void>;
signAndSendTransactions(
Expand Down

0 comments on commit 5808436

Please sign in to comment.