diff options
| author | Ross Nicoll <[email protected]> | 2015-08-01 11:44:25 +0100 |
|---|---|---|
| committer | J Ross Nicoll <[email protected]> | 2015-10-31 14:49:39 +0000 |
| commit | 5731f4f3c6dff84d6c5264954ba15e5b991abe38 (patch) | |
| tree | 0e162847a682e9074ec7fd9598c3d28b4768b858 /src/key.cpp | |
| parent | Introduce basic Dogecoin branding (diff) | |
| download | discoin-5731f4f3c6dff84d6c5264954ba15e5b991abe38.tar.xz discoin-5731f4f3c6dff84d6c5264954ba15e5b991abe38.zip | |
Update Bitcoin references and addresses in strings to Dogecoin equivalents
Diffstat (limited to 'src/key.cpp')
| -rw-r--r-- | src/key.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/key.cpp b/src/key.cpp index b772dff33..bbd9ca5be 100644 --- a/src/key.cpp +++ b/src/key.cpp @@ -78,7 +78,7 @@ bool CKey::VerifyPubKey(const CPubKey& pubkey) const { return false; } unsigned char rnd[8]; - std::string str = "Bitcoin key verification\n"; + std::string str = "Dogecoin key verification\n"; GetRandBytes(rnd, sizeof(rnd)); uint256 hash; CHash256().Write((unsigned char*)str.data(), str.size()).Write(rnd, sizeof(rnd)).Finalize(hash.begin()); |