From 2b303e7d625033afafc7ec5a2e73ce08fddd2321 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet Date: Wed, 19 Jun 2019 11:43:04 +0200 Subject: clef: fix stutter in warning message (#19736) --- signer/fourbyte/validation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 { -- cgit v1.2.3