diff options
author | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-08 12:37:56 +0100 |
---|---|---|
committer | Wladimir J. van der Laan <laanwj@gmail.com> | 2015-01-08 12:38:10 +0100 |
commit | c8183bf8ea75608987a00c7c8a1450d89e9ca43a (patch) | |
tree | a2114829d9aea7c4da4432f3b6b049f8a2c1cde3 /src/main.h | |
parent | c5e0aef5c4a6beaf9869b942e0671dfb31196533 (diff) | |
parent | 23f3435962f0cfa57a95b293094fe9d0fe9d968c (diff) |
Merge pull request #5589
23f3435 Rename MAX_TX_SIGOPS to MAX_STANDARD_TX_SIGOPS to match similar policy constant MAX_STANDARD_TX_SIZE (Luke Dashjr)
Diffstat (limited to 'src/main.h')
-rw-r--r-- | src/main.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h index 1e00114768..2b260a665b 100644 --- a/src/main.h +++ b/src/main.h @@ -60,7 +60,7 @@ static const unsigned int MAX_BLOCK_SIGOPS = MAX_BLOCK_SIZE/50; /** Maximum number of signature check operations in an IsStandard() P2SH script */ static const unsigned int MAX_P2SH_SIGOPS = 15; /** The maximum number of sigops we're willing to relay/mine in a single tx */ -static const unsigned int MAX_TX_SIGOPS = MAX_BLOCK_SIGOPS/5; +static const unsigned int MAX_STANDARD_TX_SIGOPS = MAX_BLOCK_SIGOPS/5; /** Default for -maxorphantx, maximum number of orphan transactions kept in memory */ static const unsigned int DEFAULT_MAX_ORPHAN_TRANSACTIONS = 100; /** The maximum size of a blk?????.dat file (since 0.8) */ |