Browse Source

Fix vpwallets compile error

pull/132/head
Duke Leto 6 years ago
parent
commit
4e01bb8ee4
  1. 1
      src/main.cpp
  2. 1
      src/wallet/wallet.cpp

1
src/main.cpp

@ -28,6 +28,7 @@
#include "util.h"
#include "utilmoneystr.h"
#include "validationinterface.h"
#include "wallet/wallet.h"
#include "wallet/asyncrpcoperation_sendmany.h"
#include "wallet/asyncrpcoperation_shieldcoinbase.h"

1
src/wallet/wallet.cpp

@ -37,6 +37,7 @@ unsigned int nTxConfirmTarget = DEFAULT_TX_CONFIRM_TARGET;
bool bSpendZeroConfChange = true;
bool fSendFreeTransactions = false;
bool fPayAtLeastCustomFee = true;
std::vector<CWalletRef> vpwallets;
/**
* Fees smaller than this (in satoshi) are considered zero fee (for transaction creation)

Loading…
Cancel
Save