Browse Source

fix non-standard reason string in main.cpp

0.10
Philip Kaufmann 11 years ago
parent
commit
bbfce8a4c9
  1. 2
      src/main.cpp

2
src/main.cpp

@ -443,7 +443,7 @@ bool IsStandardTx(const CTransaction& tx, string& reason) @@ -443,7 +443,7 @@ bool IsStandardTx(const CTransaction& tx, string& reason)
return false;
}
if (!txin.scriptSig.HasCanonicalPushes()) {
reason = "non-canonical-push";
reason = "scriptsig-non-canonical-push";
return false;
}
}

Loading…
Cancel
Save