amount: Move CAmount CENT to unit test header

This commit is contained in:
MarcoFalke
2018-09-17 14:33:52 -04:00
parent 4901c00792
commit fa84723e73
5 changed files with 12 additions and 11 deletions

View File

@@ -10,7 +10,7 @@
#include <random.h>
//! 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;