aboutsummaryrefslogtreecommitdiff
path: root/src/main.h
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2015-01-08 12:37:56 +0100
committerWladimir J. van der Laan <[email protected]>2015-01-08 12:38:10 +0100
commitc8183bf8ea75608987a00c7c8a1450d89e9ca43a (patch)
treea2114829d9aea7c4da4432f3b6b049f8a2c1cde3 /src/main.h
parentMerge pull request #5604 (diff)
parentRename MAX_TX_SIGOPS to MAX_STANDARD_TX_SIGOPS to match similar policy consta... (diff)
downloaddiscoin-c8183bf8ea75608987a00c7c8a1450d89e9ca43a.tar.xz
discoin-c8183bf8ea75608987a00c7c8a1450d89e9ca43a.zip
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.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.h b/src/main.h
index 1e0011476..2b260a665 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) */