Skip to content

Commit

Permalink
Fix parameters
Browse files Browse the repository at this point in the history
  • Loading branch information
octave08 committed Sep 14, 2023
1 parent bb4ab02 commit 3ac6cac
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/@magic-sdk/provider/src/modules/wallet.ts
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ export class WalletModule extends BaseModule {

public sendGaslessTransaction(address: string, serializedTransaction: string) {
return this.request<GasApiResponse>(
createJsonRpcRequestPayload(MagicPayloadMethod.SendGaslessTransaction, [[address, serializedTransaction]]),
createJsonRpcRequestPayload(MagicPayloadMethod.SendGaslessTransaction, [address, serializedTransaction]),
);
}

Expand Down

0 comments on commit 3ac6cac

Please sign in to comment.