aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorSuhas Daftuar <sdaftuar@chaincode.com>2016-07-18 13:28:26 -0400
committerWladimir J. van der Laan <laanwj@gmail.com>2016-07-19 12:10:28 +0200
commitfca1a415cec6b7655448ce8b30778784ab4c181e (patch)
tree9509f8d07e5a811d00402fad12f021532b16f5fd /src/main.h
parenta07c8a032c0d7c82d94a96d7c23c5d520212d7c8 (diff)
downloadbitcoin-fca1a415cec6b7655448ce8b30778784ab4c181e.tar.xz
Rename "block cost" to "block weight"
Github-Pull: #8363 Rebased-From: 2c06bae39edfaa9c0855d83377ad8fda09e4fa08
Diffstat (limited to 'src/main.h')
-rw-r--r--src/main.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index 65ae2488f9..27121890f6 100644
--- a/src/main.h
+++ b/src/main.h
@@ -155,7 +155,7 @@ typedef boost::unordered_map<uint256, CBlockIndex*, BlockHasher> BlockMap;
extern BlockMap mapBlockIndex;
extern uint64_t nLastBlockTx;
extern uint64_t nLastBlockSize;
-extern uint64_t nLastBlockCost;
+extern uint64_t nLastBlockWeight;
extern const std::string strMessageMagic;
extern CWaitableCriticalSection csBestBlock;
extern CConditionVariable cvBlockChange;