Skip to content

Commit

Permalink
fix: update sendTransactionAsync status
Browse files Browse the repository at this point in the history
  • Loading branch information
gtsonevv committed Jan 21, 2025
1 parent ce2076d commit ea7b0de
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/providers/src/json-rpc-provider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ export class JsonRpcProvider extends Provider {
* @returns {Promise<FinalExecutionOutcome>}
*/
async sendTransactionAsync(signedTransaction: SignedTransaction): Promise<FinalExecutionOutcome> {
return this.sendTransactionUntil(signedTransaction, 'INCLUDED');
return this.sendTransactionUntil(signedTransaction, 'NONE');
}

/**
Expand Down

0 comments on commit ea7b0de

Please sign in to comment.