diff options
| author | Ross Nicoll <[email protected]> | 2014-03-28 23:13:24 +0000 |
|---|---|---|
| committer | Ross Nicoll <[email protected]> | 2014-03-28 23:13:24 +0000 |
| commit | 3fd42567e8925b99ff80455743b176e9536a5a23 (patch) | |
| tree | 21b8fed0b7226d6e5559f277eff699c6301bd934 /src/script.cpp | |
| parent | Replaced references to Bitcoin with Dogecoin in UI code. (diff) | |
| download | discoin-3fd42567e8925b99ff80455743b176e9536a5a23.tar.xz discoin-3fd42567e8925b99ff80455743b176e9536a5a23.zip | |
Replaced references to Bitcoin with Dogecoin/Dogecoin Core as appropriate.
Diffstat (limited to 'src/script.cpp')
| -rw-r--r-- | src/script.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/script.cpp b/src/script.cpp index 810ba16d2..2ac446328 100644 --- a/src/script.cpp +++ b/src/script.cpp @@ -1203,7 +1203,7 @@ bool Solver(const CScript& scriptPubKey, txnouttype& typeRet, vector<vector<unsi // Standard tx, sender provides pubkey, receiver adds signature mTemplates.insert(make_pair(TX_PUBKEY, CScript() << OP_PUBKEY << OP_CHECKSIG)); - // Bitcoin address tx, sender provides hash of pubkey, receiver provides signature and pubkey + // Dogecoin address tx, sender provides hash of pubkey, receiver provides signature and pubkey mTemplates.insert(make_pair(TX_PUBKEYHASH, CScript() << OP_DUP << OP_HASH160 << OP_PUBKEYHASH << OP_EQUALVERIFY << OP_CHECKSIG)); // Sender provides N pubkeys, receivers provides M signatures |