From b7113c4ff3495c6bb310ed60505dcbb3654c6316 Mon Sep 17 00:00:00 2001 From: Vlad Dobromyslov Date: Mon, 28 Nov 2022 09:35:00 +0200 Subject: [PATCH] #478 - fix information warning --- libraries/wallet/wallet.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libraries/wallet/wallet.cpp b/libraries/wallet/wallet.cpp index 6b1b2eb1..7eefae27 100644 --- a/libraries/wallet/wallet.cpp +++ b/libraries/wallet/wallet.cpp @@ -3349,7 +3349,7 @@ public: if(transaction_fee) { if (*transaction_fee >= xfer_op.amount) { - FC_THROW("Transaction fee: ${sidechain_fee}, would be grater than transfer amount ${amount}", + FC_THROW("Transaction fee: ${sidechain_fee}, is greater than transferred amount ${amount}", ("sidechain_fee", get_asset(transaction_fee->asset_id).amount_to_pretty_string(transaction_fee->amount))("amount", get_asset(xfer_op.amount.asset_id).amount_to_pretty_string(xfer_op.amount.amount))); } } -- 2.45.2