From 32b15fe98ef57c6c5d4cf583b5ed4838e5dcc370 Mon Sep 17 00:00:00 2001 From: Daniil Lashin Date: Mon, 23 Jul 2018 18:09:32 +0300 Subject: [PATCH] fix --- core/transaction/redeem_check.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/transaction/redeem_check.go b/core/transaction/redeem_check.go index 794d58e6c..f1c2f8c65 100644 --- a/core/transaction/redeem_check.go +++ b/core/transaction/redeem_check.go @@ -61,7 +61,7 @@ func (data RedeemCheckData) Run(sender types.Address, tx *Transaction, context * if tx.GasCoin != types.GetBaseCoin() { return Response{ Code: code.WrongGasCoin, - Log: fmt.Sprintf("Gas for for redeem check transaction can only be %s", types.GetBaseCoin())} + Log: fmt.Sprintf("Gas coin for redeem check transaction can only be %s", types.GetBaseCoin())} } if !context.CoinExists(decodedCheck.Coin) {