Lowercase our currency name, hey look, an emerging standard

This commit is contained in:
Jonathan "Duke" Leto 2017-12-30 23:51:38 -08:00
parent 3113973c12
commit da30307c73
1 changed files with 1 additions and 1 deletions

View File

@ -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();
}