Skip to content

Commit

Permalink
Params is struct, our chainstate is 0 gb
Browse files Browse the repository at this point in the history
  • Loading branch information
backpacker69 committed Jul 26, 2019
1 parent 70e8634 commit 7d7da27
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/consensus/tx_verify.h
Expand Up @@ -21,7 +21,7 @@ class CValidationState;
bool CheckTransaction(const CTransaction& tx, CValidationState& state, bool fCheckDuplicateInputs=true);

namespace Consensus {
class Params;
struct Params;
/**
* Check whether all inputs of this transaction are valid (no double spends and amounts)
* This does not modify the UTXO set. This does not check scripts and sigs.
Expand Down
2 changes: 1 addition & 1 deletion src/qt/coincontroldialog.cpp
Expand Up @@ -422,7 +422,7 @@ void CoinControlDialog::updateLabels(WalletModel *model, QDialog* dialog)
return;

bool fNewFees = IsProtocolV07(GetAdjustedTime());
CAmount nMinFeeBase = (fNewFees ? MIN_TX_FEE : MIN_TX_FEE_PREV7);
//CAmount nMinFeeBase = (fNewFees ? MIN_TX_FEE : MIN_TX_FEE_PREV7);

// nPayAmount
CAmount nPayAmount = 0;
Expand Down
2 changes: 1 addition & 1 deletion src/qt/intro.cpp
Expand Up @@ -25,7 +25,7 @@ static const uint64_t GB_BYTES = 1000000000LL;
/* Minimum free space (in GB) needed for data directory */
static const uint64_t BLOCK_CHAIN_SIZE = 1;
/* Minimum free space (in GB) needed for data directory when pruned; Does not include prune target */
static const uint64_t CHAIN_STATE_SIZE = 0.2;
static const uint64_t CHAIN_STATE_SIZE = 0;
/* Total required space (in GB) depending on user choice (prune, not prune) */
static uint64_t requiredSpace;

Expand Down

0 comments on commit 7d7da27

Please sign in to comment.