Skip to content

Commit

Permalink
fix: mock change to trigger ci
Browse files Browse the repository at this point in the history
  • Loading branch information
vikinatora committed Apr 24, 2024
1 parent f6e5f65 commit c462740
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/providers/src/json-rpc-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,8 @@ export class JsonRpcProvider extends Provider {
*/
async sendTransactionAsync(signedTransaction: SignedTransaction): Promise<FinalExecutionOutcome> {
const bytes = encodeTransaction(signedTransaction);
return this.sendJsonRpc('broadcast_tx_async', [Buffer.from(bytes).toString('base64')]);
const buffer = [Buffer.from(bytes).toString('base64')];
return this.sendJsonRpc('broadcast_tx_async', buffer);
}

/**
Expand Down

0 comments on commit c462740

Please sign in to comment.