Skip to content

Commit

Permalink
fix: return userop hash in wallet_sendFunctionCallBundle
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewwahid committed Aug 4, 2023
1 parent 002a4fb commit 5329147
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -451,9 +451,10 @@ class WalletConnectV2Controller {
return Errors.getSdkError(Errors.USER_REJECTED_SIGN).message;
}else{
if (transactionActivity.txHash != null){
return transactionActivity.txHash!;
return transactionActivity.hash!;
}else{
return await waitForTxHash(transactionActivity.hash!);
await waitForTxHash(transactionActivity.hash!);
return transactionActivity.hash!;
}
}
}
Expand Down

0 comments on commit 5329147

Please sign in to comment.