We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5813a6d commit 530e7b8Copy full SHA for 530e7b8
main.go
@@ -59,11 +59,7 @@ func main() {
59
60
//开始mint
61
for i := 1; i <= config.MintConfig.Times; i++ {
62
- if err != nil {
63
- time.Sleep(10 * time.Second) //如果有异常,则多等待会儿,减少不必要的gas浪费
64
- } else {
65
- time.Sleep(5 * time.Second) //防止多次异常,导致连续mint同一个nonce
66
- }
+ time.Sleep(5 * time.Second) //防止多次异常,导致连续mint同一个nonce
67
68
balanceStr, er := evmApp.TokenBalanceOf()
69
err = er
0 commit comments