diff options
| author | Wladimir J. van der Laan <[email protected]> | 2013-12-13 16:14:48 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2013-12-13 16:34:57 +0100 |
| commit | cd7fa8bb437267db2502415e4fb035d60bda860c (patch) | |
| tree | ebb78a41255c9c75f84b19eb59a985444848c093 /src/wallet.h | |
| parent | Move `settxfee` from rpcblockchain to rpcwallet (diff) | |
| download | discoin-cd7fa8bb437267db2502415e4fb035d60bda860c.tar.xz discoin-cd7fa8bb437267db2502415e4fb035d60bda860c.zip | |
Move `nTransactionFee` from main.cpp to wallet.cpp
Transaction fee is only used by the wallet.
No need for it to be in main.cpp.
Diffstat (limited to 'src/wallet.h')
| -rw-r--r-- | src/wallet.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/wallet.h b/src/wallet.h index 90209122f..8cd2e021e 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -23,6 +23,9 @@ #include <utility> #include <vector> +// Settings +extern int64_t nTransactionFee; + class CAccountingEntry; class CCoinControl; class COutput; |