We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ba92cc8 commit b952e62Copy full SHA for b952e62
src/shared/utils/transaction/insert-transaction.ts
@@ -95,9 +95,10 @@ export const insertTransaction = async (
95
} catch (e) {
96
if (e instanceof WalletDetailsError) {
97
// do nothing. The this is a smart backend wallet using a v4 endpoint
98
+ } else {
99
+ // if other type of error, rethrow
100
+ throw e;
101
}
- // if other type of error, rethrow
- throw e;
102
103
104
if (!walletDetails && queuedTransaction.accountAddress) {
0 commit comments