aboutsummaryrefslogtreecommitdiff
path: root/src/policy
diff options
context:
space:
mode:
authorBrian Deery <brian@factom.org>2016-11-14 00:38:07 -0600
committerBrian Deery <brian@factom.org>2016-11-14 00:38:07 -0600
commit07ede5d711e7fd601770c1f57110830bf540f0bc (patch)
tree557c01d97dbdb02ac71d6a14052c777993d70b66 /src/policy
parent87ab49e4fe38f0d8d527090ea348081037a68cef (diff)
downloadbitcoin-07ede5d711e7fd601770c1f57110830bf540f0bc.tar.xz
update comments for tx weight
Diffstat (limited to 'src/policy')
-rw-r--r--src/policy/policy.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/policy/policy.cpp b/src/policy/policy.cpp
index a3eee474ab..3ad1ff7bae 100644
--- a/src/policy/policy.cpp
+++ b/src/policy/policy.cpp
@@ -66,7 +66,7 @@ bool IsStandardTx(const CTransaction& tx, std::string& reason, const bool witnes
// Extremely large transactions with lots of inputs can cost the network
// almost as much to process as they cost the sender in fees, because
// computing signature hashes is O(ninputs*txsize). Limiting transactions
- // to MAX_STANDARD_TX_SIZE mitigates CPU exhaustion attacks.
+ // to MAX_STANDARD_TX_WEIGHT mitigates CPU exhaustion attacks.
unsigned int sz = GetTransactionWeight(tx);
if (sz >= MAX_STANDARD_TX_WEIGHT) {
reason = "tx-size";