diff options
author | practicalswift <practicalswift@users.noreply.github.com> | 2017-07-15 14:28:40 +0200 |
---|---|---|
committer | practicalswift <practicalswift@users.noreply.github.com> | 2017-07-15 14:28:40 +0200 |
commit | 0189d8ed19eb435f7b355bb482ec748195a2c0b3 (patch) | |
tree | f57312242388d35e3223457508214fcf4ea52d4e /src/consensus | |
parent | 8fdd23a224ba236874ef662c4ca311b002dbcab3 (diff) |
Fix typos
Diffstat (limited to 'src/consensus')
-rw-r--r-- | src/consensus/consensus.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/consensus/consensus.h b/src/consensus/consensus.h index a1bb99a802..ddd4ee9fab 100644 --- a/src/consensus/consensus.h +++ b/src/consensus/consensus.h @@ -21,7 +21,7 @@ static const int COINBASE_MATURITY = 100; static const int WITNESS_SCALE_FACTOR = 4; static const size_t MIN_TRANSACTION_WEIGHT = WITNESS_SCALE_FACTOR * 60; // 60 is the lower bound for the size of a valid serialized CTransaction -static const size_t MIN_SERIALIZEABLE_TRANSACTION_WEIGHT = WITNESS_SCALE_FACTOR * 10; // 10 is the lower bound for the size of a serialized CTransaction +static const size_t MIN_SERIALIZABLE_TRANSACTION_WEIGHT = WITNESS_SCALE_FACTOR * 10; // 10 is the lower bound for the size of a serialized CTransaction /** Flags for nSequence and nLockTime locks */ enum { |