Skip to content

Commit 2cc189a

Browse files
committed
remove debug line
1 parent 492f4f5 commit 2cc189a

File tree

1 file changed

+0
-4
lines changed

1 file changed

+0
-4
lines changed

src/db/wallets/walletNonce.ts

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -48,10 +48,6 @@ export const releaseNonce = async (
4848
walletAddress: Address,
4949
nonce: number,
5050
) => {
51-
if (isNaN(nonce) || nonce < 3) {
52-
throw new Error(`**** NONCE IS BAD WHY???: ${nonce}`);
53-
}
54-
5551
const key = unusedNoncesKey(chainId, walletAddress);
5652
await redis.rpush(key, nonce);
5753
};

0 commit comments

Comments
 (0)