mirror of
https://github.com/bitcoin/bitcoin.git
synced 2025-02-10 10:52:31 -05:00
Merge pull request #3666
bbfce8a
fix non-standard reason string in main.cpp (Philip Kaufmann)
This commit is contained in:
commit
047ee427e7
1 changed files with 1 additions and 1 deletions
|
@ -443,7 +443,7 @@ bool IsStandardTx(const CTransaction& tx, string& reason)
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
if (!txin.scriptSig.HasCanonicalPushes()) {
|
if (!txin.scriptSig.HasCanonicalPushes()) {
|
||||||
reason = "non-canonical-push";
|
reason = "scriptsig-non-canonical-push";
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue