From 148110ebc82e6c7c7e277c47c07cbb7d089d98e9 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C3=A9ter=20Szil=C3=A1gyi?= Date: Thu, 3 May 2018 11:47:50 +0300 Subject: [PATCH] signer/core: fix tiny error whitespace --- signer/core/validation.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/signer/core/validation.go b/signer/core/validation.go index a50e171424..288456df87 100644 --- a/signer/core/validation.go +++ b/signer/core/validation.go @@ -128,7 +128,7 @@ func (v *Validator) validate(msgs *ValidationMessages, txargs *SendTxArgs, metho if len(data) == 0 { if txargs.Value.ToInt().Cmp(big.NewInt(0)) > 0 { // Sending ether into black hole - return errors.New(`Tx will create contract with value but empty code! `) + return errors.New("Tx will create contract with value but empty code!") } // No value submitted at least msgs.crit("Tx will create contract with empty code!")