From fa84723e73d3d7766e7821881ac96ec203e50efc Mon Sep 17 00:00:00 2001 From: MarcoFalke Date: Mon, 17 Sep 2018 14:33:52 -0400 Subject: amount: Move CAmount CENT to unit test header --- src/wallet/coinselection.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/wallet/coinselection.h') diff --git a/src/wallet/coinselection.h b/src/wallet/coinselection.h index 6d755d0969..5348401f45 100644 --- a/src/wallet/coinselection.h +++ b/src/wallet/coinselection.h @@ -10,7 +10,7 @@ #include //! target minimum change amount -static const CAmount MIN_CHANGE = CENT; +static constexpr CAmount MIN_CHANGE{COIN / 100}; //! final minimum change amount after paying for fees static const CAmount MIN_FINAL_CHANGE = MIN_CHANGE/2; -- cgit v1.2.3