mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-03-06 14:19:59 -05:00
Bugfix: bitcoin-tx: scriptPubKey may be null, so accept outscript=<n>:
This commit is contained in:
parent
e5fc6631b9
commit
15ef1b905b
1 changed files with 1 additions and 2 deletions
|
@ -237,8 +237,7 @@ static void MutateTxAddOutScript(CMutableTransaction& tx, const string& strInput
|
||||||
// separate VALUE:SCRIPT in string
|
// separate VALUE:SCRIPT in string
|
||||||
size_t pos = strInput.find(':');
|
size_t pos = strInput.find(':');
|
||||||
if ((pos == string::npos) ||
|
if ((pos == string::npos) ||
|
||||||
(pos == 0) ||
|
(pos == 0))
|
||||||
(pos == (strInput.size() - 1)))
|
|
||||||
throw runtime_error("TX output missing separator");
|
throw runtime_error("TX output missing separator");
|
||||||
|
|
||||||
// extract and validate VALUE
|
// extract and validate VALUE
|
||||||
|
|
Loading…
Add table
Reference in a new issue