aboutsummaryrefslogtreecommitdiff
path: root/src/main.cpp
diff options
context:
space:
mode:
authorVitalii Demianets <vitalii@orsoc.se>2015-01-14 10:25:06 +0100
committerCory Fields <cory-nospam-@coryfields.com>2015-01-31 17:38:28 -0500
commitbd2b73bb9b416139a0fbaf6eb2131356a59184a6 (patch)
treea094a676ee3745736451ee17dcbef22b54e41f49 /src/main.cpp
parent5262fde0ecd19f1febbfcd488f2be41c5dffd047 (diff)
downloadbitcoin-bd2b73bb9b416139a0fbaf6eb2131356a59184a6.tar.xz
TRIVIAL: fix misleading comment
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 629e0dcbc0..f43d8c58b6 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -744,7 +744,7 @@ bool AreInputsStandard(const CTransaction& tx, const CCoinsViewCache& mapInputs)
// non-standard. Note that this EvalScript() call will
// be quick, because if there are any operations
// beside "push data" in the scriptSig
- // IsStandard() will have already returned false
+ // IsStandardTx() will have already returned false
// and this method isn't called.
vector<vector<unsigned char> > stack;
if (!EvalScript(stack, tx.vin[i].scriptSig, SCRIPT_VERIFY_NONE, BaseSignatureChecker()))