aboutsummaryrefslogtreecommitdiff
path: root/src/test/script_tests.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2012-10-21 12:36:01 -0700
committerPieter Wuille <[email protected]>2012-10-21 12:36:01 -0700
commitef0ae25c2be04340cc34b0f1807cb75ca09fbd32 (patch)
tree0e1e735343dcac684129e7026fc3c6e80e2ab40a /src/test/script_tests.cpp
parentMerge pull request #1941 from Diapolo/rem_initMsg_main (diff)
parentchange blockchain -> block chain (spelling) (diff)
downloaddiscoin-ef0ae25c2be04340cc34b0f1807cb75ca09fbd32.tar.xz
discoin-ef0ae25c2be04340cc34b0f1807cb75ca09fbd32.zip
Merge pull request #1910 from Diapolo/block_chain_typo
change blockchain -> block chain (spelling)
Diffstat (limited to 'src/test/script_tests.cpp')
-rw-r--r--src/test/script_tests.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/script_tests.cpp b/src/test/script_tests.cpp
index f8e4fa8a4..3f280ba94 100644
--- a/src/test/script_tests.cpp
+++ b/src/test/script_tests.cpp
@@ -79,7 +79,7 @@ ParseScript(string s)
{
BOOST_ERROR("Parse error: " << s);
return CScript();
- }
+ }
}
return result;
@@ -206,7 +206,7 @@ sign_multisig(CScript scriptPubKey, std::vector<CKey> keys, CTransaction transac
// NOTE: CHECKMULTISIG has an unfortunate bug; it requires
// one extra item on the stack, before the signatures.
// Putting OP_0 on the stack is the workaround;
- // fixing the bug would mean splitting the blockchain (old
+ // fixing the bug would mean splitting the block chain (old
// clients would not accept new CHECKMULTISIG transactions,
// and vice-versa)
//