From da30307c733ab6e1e3b76728a8c1a7ec323ceead Mon Sep 17 00:00:00 2001 From: "Jonathan \"Duke\" Leto" Date: Sat, 30 Dec 2017 23:51:38 -0800 Subject: [PATCH] Lowercase our currency name, hey look, an emerging standard --- src/script/interpreter.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/script/interpreter.cpp b/src/script/interpreter.cpp index fc0c3371..40ea0bd9 100644 --- a/src/script/interpreter.cpp +++ b/src/script/interpreter.cpp @@ -1104,7 +1104,7 @@ uint256 SignatureHash(const CScript& scriptCode, const CTransaction& txTo, unsig ss << txTmp << nHashType; // This ensures Two Way Replay Protection if (nHashType & SIGHASH_FORKID) { - ss << std::string("BTCP"); + ss << std::string("btcp"); } return ss.GetHash(); }