Skip to content

Commit

Permalink
min tx fee of 0.0001
Browse files Browse the repository at this point in the history
  • Loading branch information
onsightit committed Nov 13, 2016
1 parent b473b0a commit b6bca26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main.h
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ static const unsigned int MAX_BLOCK_SIZE_GEN = MAX_BLOCK_SIZE/4;
static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50;
static const unsigned int MAX_ORPHAN_TRANSACTIONS = MAX_BLOCK_SIZE/100;
static const unsigned int MAX_INV_SZ = 50000;
static const int64_t MIN_TX_FEE = 100000; // 0.001
static const int64_t MIN_TX_FEE = 10000; // 0.0001
static const int64_t MIN_RELAY_TX_FEE = MIN_TX_FEE;
static const int64_t MAX_MONEY = 1000000000000 * COIN; // SolarCoin: maximum of 98.1 billion coins
static const double PI = 3.1415926535;
Expand Down

0 comments on commit b6bca26

Please sign in to comment.