diff options
| author | Wladimir J. van der Laan <[email protected]> | 2016-11-21 15:32:11 +0100 |
|---|---|---|
| committer | Wladimir J. van der Laan <[email protected]> | 2016-11-21 15:33:19 +0100 |
| commit | 210891143ba000708989aa64903c8d3c383e04e1 (patch) | |
| tree | c2f09107402ee69b1fe777a2e28aeba3a9bacc60 /src/bitcoin-tx.cpp | |
| parent | Merge #9179: Set DEFAULT_LIMITFREERELAY = 0 kB/minute (diff) | |
| parent | Allow bitcoin-tx to parse partial transactions (diff) | |
| download | discoin-210891143ba000708989aa64903c8d3c383e04e1.tar.xz discoin-210891143ba000708989aa64903c8d3c383e04e1.zip | |
Merge #8837: allow bitcoin-tx to parse partial transactions
7451cf5 Allow bitcoin-tx to parse partial transactions (jnewbery)
Diffstat (limited to 'src/bitcoin-tx.cpp')
| -rw-r--r-- | src/bitcoin-tx.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bitcoin-tx.cpp b/src/bitcoin-tx.cpp index 6c66efcc9..6d17bc392 100644 --- a/src/bitcoin-tx.cpp +++ b/src/bitcoin-tx.cpp @@ -638,7 +638,7 @@ static int CommandLineRawTx(int argc, char* argv[]) if (strHexTx == "-") // "-" implies standard input strHexTx = readStdin(); - if (!DecodeHexTx(txDecodeTmp, strHexTx)) + if (!DecodeHexTx(txDecodeTmp, strHexTx, true)) throw runtime_error("invalid transaction encoding"); startArg = 2; |