aboutsummaryrefslogtreecommitdiff
path: root/src/alert.cpp
diff options
context:
space:
mode:
authorPieter Wuille <[email protected]>2013-06-22 06:56:14 -0700
committerPieter Wuille <[email protected]>2013-06-22 06:56:14 -0700
commit01b45731b75a19ac194b4206b20716bfedcb2357 (patch)
tree90bd76e552d0ac7b44382885e212d9705fe24d96 /src/alert.cpp
parentMerge pull request #2781 from sipa/keytimemem (diff)
parentIntroduce a CChainParameters singleton class and regtest mode. (diff)
downloaddiscoin-01b45731b75a19ac194b4206b20716bfedcb2357.tar.xz
discoin-01b45731b75a19ac194b4206b20716bfedcb2357.zip
Merge pull request #2632 from mikehearn/chainparams
Refactor chain-specific tweaks into a CChainParams class and introduce a regtest mode
Diffstat (limited to 'src/alert.cpp')
-rw-r--r--src/alert.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/alert.cpp b/src/alert.cpp
index 44f4d5eec..e00847aad 100644
--- a/src/alert.cpp
+++ b/src/alert.cpp
@@ -19,9 +19,6 @@ using namespace std;
map<uint256, CAlert> mapAlerts;
CCriticalSection cs_mapAlerts;
-static const char* pszMainKey = "04fc9702847840aaf195de8442ebecedf5b095cdbb9bc716bda9110971b28a49e0ead8564ff0db22209e0374782c093bb899692d524e9d6a6956e7c5ecbcd68284";
-static const char* pszTestKey = "04302390343f91cc401d56d68b123028bf52e5fca1939df127f63c6467cdf9c8e2c14b61104cf817d0b780da337893ecc4aaff1309e536162dabbdb45200ca2b0a";
-
void CUnsignedAlert::SetNull()
{
nVersion = 1;
@@ -144,7 +141,7 @@ bool CAlert::RelayTo(CNode* pnode) const
bool CAlert::CheckSignature() const
{
- CPubKey key(ParseHex(fTestNet ? pszTestKey : pszMainKey));
+ CPubKey key(Params().AlertKey());
if (!key.Verify(Hash(vchMsg.begin(), vchMsg.end()), vchSig))
return error("CAlert::CheckSignature() : verify signature failed");