Merge #8932: Allow bitcoin-tx to create v2 transactions

b0aea80 Sync bitcoin-tx with tx version policy (BtcDrak)
This commit is contained in:
Wladimir J. van der Laan 2016-10-18 10:55:51 +02:00
commit 614d522c3e
No known key found for this signature in database
GPG Key ID: 74810B012346C9A6
1 changed files with 1 additions and 1 deletions

View File

@ -164,7 +164,7 @@ static void RegisterLoad(const string& strInput)
static void MutateTxVersion(CMutableTransaction& tx, const string& cmdVal)
{
int64_t newVersion = atoi64(cmdVal);
if (newVersion < 1 || newVersion > CTransaction::CURRENT_VERSION)
if (newVersion < 1 || newVersion > CTransaction::MAX_STANDARD_VERSION)
throw runtime_error("Invalid TX version requested");
tx.nVersion = (int) newVersion;