![]() |
Raven Core
3.0.0
P2P Digital Currency
|
#include "wallet/wallet.h"#include "base58.h"#include "checkpoints.h"#include "chain.h"#include "wallet/coincontrol.h"#include "consensus/consensus.h"#include "consensus/validation.h"#include "fs.h"#include "init.h"#include "key.h"#include "keystore.h"#include "validation.h"#include "net.h"#include "policy/fees.h"#include "policy/policy.h"#include "policy/rbf.h"#include "primitives/block.h"#include "primitives/transaction.h"#include "script/script.h"#include "script/sign.h"#include "scheduler.h"#include "timedata.h"#include "txmempool.h"#include "util.h"#include "ui_interface.h"#include "utilmoneystr.h"#include "wallet/fees.h"#include <assert.h>#include <boost/algorithm/string/replace.hpp>#include <boost/thread.hpp>#include <tinyformat.h>#include "assets/assets.h"Go to the source code of this file.
Classes | |
| struct | CompareValueOnly |
| struct | CompareAssetValueOnly |
| class | CAffectedKeysVisitor |
Variables | |
| std::vector< CWalletRef > | vpwallets |
| CFeeRate | payTxFee (DEFAULT_TRANSACTION_FEE) |
| Transaction fee set by the user. More... | |
| unsigned int | nTxConfirmTarget = DEFAULT_TX_CONFIRM_TARGET |
| bool | bSpendZeroConfChange = DEFAULT_SPEND_ZEROCONF_CHANGE |
| bool | fWalletRbf = DEFAULT_WALLET_RBF |
| const char * | DEFAULT_WALLET_DAT = "wallet.dat" |
| const uint32_t | BIP32_HARDENED_KEY_LIMIT = 0x80000000 |
| const uint32_t BIP32_HARDENED_KEY_LIMIT = 0x80000000 |
Definition at line 52 of file wallet.cpp.
| bool bSpendZeroConfChange = DEFAULT_SPEND_ZEROCONF_CHANGE |
Definition at line 48 of file wallet.cpp.
| const char* DEFAULT_WALLET_DAT = "wallet.dat" |
Definition at line 51 of file wallet.cpp.
| bool fWalletRbf = DEFAULT_WALLET_RBF |
Definition at line 49 of file wallet.cpp.
| unsigned int nTxConfirmTarget = DEFAULT_TX_CONFIRM_TARGET |
Definition at line 47 of file wallet.cpp.
| CFeeRate payTxFee(DEFAULT_TRANSACTION_FEE) |
Transaction fee set by the user.
Settings.
| std::vector<CWalletRef> vpwallets |
Definition at line 44 of file wallet.cpp.
1.8.13