Skip to content

Commit

Permalink
Merge pull request #88 from G7DAO/feat/safe-nonce-overrider
Browse files Browse the repository at this point in the history
fix: nonce message
  • Loading branch information
karacurt authored Oct 8, 2024
2 parents 9384f33 + b9abe0b commit 84993c8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions evm/generators.go
Original file line number Diff line number Diff line change
Expand Up @@ -1376,7 +1376,7 @@ func {{.DeployHandler.HandlerName}}() *cobra.Command {
}
if safeNonceRaw == "" {
fmt.Println("--safe-nonce not specified, using default (0)")
fmt.Println("--safe-nonce not specified, fetching nonce from Safe contract")
safeNonce = big.NewInt(0)
} else {
safeNonce = new(big.Int)
Expand Down Expand Up @@ -1704,7 +1704,7 @@ func {{.HandlerName}}() *cobra.Command {
}
if safeNonceRaw == "" {
fmt.Println("--safe-nonce not specified, using default (0)")
fmt.Println("--safe-nonce not specified, fetching nonce from Safe contract")
safeNonce = big.NewInt(0)
} else {
safeNonce = new(big.Int)
Expand Down

0 comments on commit 84993c8

Please sign in to comment.