diff options
author | Guillaume Ballet <gballet@gmail.com> | 2019-06-19 17:43:04 +0800 |
---|---|---|
committer | Martin Holst Swende <martin@swende.se> | 2019-06-19 17:43:04 +0800 |
commit | 2b303e7d625033afafc7ec5a2e73ce08fddd2321 (patch) | |
tree | 55e32905466758bb0716e6d663ce3ec9926f0131 | |
parent | 96f8be36ad021b5b2a1f4a41c9979fbe1c4e2873 (diff) | |
download | go-tangerine-2b303e7d625033afafc7ec5a2e73ce08fddd2321.tar go-tangerine-2b303e7d625033afafc7ec5a2e73ce08fddd2321.tar.gz go-tangerine-2b303e7d625033afafc7ec5a2e73ce08fddd2321.tar.bz2 go-tangerine-2b303e7d625033afafc7ec5a2e73ce08fddd2321.tar.lz go-tangerine-2b303e7d625033afafc7ec5a2e73ce08fddd2321.tar.xz go-tangerine-2b303e7d625033afafc7ec5a2e73ce08fddd2321.tar.zst go-tangerine-2b303e7d625033afafc7ec5a2e73ce08fddd2321.zip |
clef: fix stutter in warning message (#19736)
-rw-r--r-- | signer/fourbyte/validation.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/signer/fourbyte/validation.go b/signer/fourbyte/validation.go index 6b8168cc8..0997c6364 100644 --- a/signer/fourbyte/validation.go +++ b/signer/fourbyte/validation.go @@ -58,7 +58,7 @@ func (db *Database) ValidateTransaction(selector *string, tx *core.SendTxArgs) ( // No value submitted at least, critically Warn, but don't blow up messages.Crit("Transaction will create contract with empty code") } else if len(data) < 40 { // arbitrary heuristic limit - messages.Warn(fmt.Sprintf("Transaction will will create contract, but payload is suspiciously small (%d bytes)", len(data))) + messages.Warn(fmt.Sprintf("Transaction will create contract, but payload is suspiciously small (%d bytes)", len(data))) } // Method selector should be nil for contract creation if selector != nil { |