aboutsummaryrefslogtreecommitdiff
path: root/src/primitives
diff options
context:
space:
mode:
authorMarcoFalke <falke.marco@gmail.com>2020-12-10 11:21:33 +0100
committerMarcoFalke <falke.marco@gmail.com>2020-12-10 11:12:08 +0100
commitfade6195b1c230edd561443637a7bde81c2594a4 (patch)
treeddf3818f5417e5e1d381a08d8ba1eb53f4fa1172 /src/primitives
parent38176dc66523881d45705fe8f96b9da76ec9981b (diff)
downloadbitcoin-fade6195b1c230edd561443637a7bde81c2594a4.tar.xz
Move TX_MAX_STANDARD_VERSION to policy
Also remove extraneous whitespace, should be reviewed with --ignore-all-space
Diffstat (limited to 'src/primitives')
-rw-r--r--src/primitives/transaction.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/primitives/transaction.h b/src/primitives/transaction.h
index 00544f64fe..0528be7722 100644
--- a/src/primitives/transaction.h
+++ b/src/primitives/transaction.h
@@ -262,12 +262,6 @@ public:
// Default transaction version.
static const int32_t CURRENT_VERSION=2;
- // Changing the default transaction version requires a two step process: first
- // adapting relay policy by bumping MAX_STANDARD_VERSION, and then later date
- // bumping the default CURRENT_VERSION at which point both CURRENT_VERSION and
- // MAX_STANDARD_VERSION will be equal.
- static const int32_t MAX_STANDARD_VERSION=2;
-
// The local variables are made const to prevent unintended modification
// without updating the cached hash value. However, CTransaction is not
// actually immutable; deserialization and assignment are implemented,