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 116edbe commit ab330f1Copy full SHA for ab330f1
server/l2.go
@@ -765,6 +765,10 @@ tryingNonces:
765
))
766
return // irrecoverable error
767
768
+ case strings.Contains(err.Error(), "already known"):
769
+ l2.nonce++ // there's already a tx with this nonce => try next one
770
+ continue tryingNonces
771
+
772
case strings.Contains(err.Error(), "replacement transaction underpriced"):
773
l2.nonce++ // there's already a tx with this nonce => try next one
774
continue tryingNonces
0 commit comments