diff options
| author | Ross Nicoll <[email protected]> | 2015-08-02 13:55:58 +0100 |
|---|---|---|
| committer | J Ross Nicoll <[email protected]> | 2015-10-31 14:49:40 +0000 |
| commit | 81727cc8c59f7663dcc4db2e2dd7e6981cce6769 (patch) | |
| tree | c25dfef844eb59f04f55f75d0c846bfbf3a1abfd /src/qt/paymentserver.cpp | |
| parent | Rename binaries to match Dogecoin (diff) | |
| download | discoin-81727cc8c59f7663dcc4db2e2dd7e6981cce6769.tar.xz discoin-81727cc8c59f7663dcc4db2e2dd7e6981cce6769.zip | |
Update Bitcoin references in QT to Dogecoin equivalents
Diffstat (limited to 'src/qt/paymentserver.cpp')
| -rw-r--r-- | src/qt/paymentserver.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/qt/paymentserver.cpp b/src/qt/paymentserver.cpp index 6e4206e6f..3ac9b41c2 100644 --- a/src/qt/paymentserver.cpp +++ b/src/qt/paymentserver.cpp @@ -49,14 +49,14 @@ using namespace std; const int BITCOIN_IPC_CONNECT_TIMEOUT = 1000; // milliseconds -const QString BITCOIN_IPC_PREFIX("bitcoin:"); +const QString BITCOIN_IPC_PREFIX("dogecoin:"); // BIP70 payment protocol messages const char* BIP70_MESSAGE_PAYMENTACK = "PaymentACK"; const char* BIP70_MESSAGE_PAYMENTREQUEST = "PaymentRequest"; // BIP71 payment protocol media types -const char* BIP71_MIMETYPE_PAYMENT = "application/bitcoin-payment"; -const char* BIP71_MIMETYPE_PAYMENTACK = "application/bitcoin-paymentack"; -const char* BIP71_MIMETYPE_PAYMENTREQUEST = "application/bitcoin-paymentrequest"; +const char* BIP71_MIMETYPE_PAYMENT = "application/dogecoin-payment"; +const char* BIP71_MIMETYPE_PAYMENTACK = "application/dogecoin-paymentack"; +const char* BIP71_MIMETYPE_PAYMENTREQUEST = "application/dogecoin-paymentrequest"; // BIP70 max payment request size in bytes (DoS protection) const qint64 BIP70_MAX_PAYMENTREQUEST_SIZE = 50000; @@ -77,7 +77,7 @@ void PaymentServer::freeCertStore() // static QString ipcServerName() { - QString name("BitcoinQt"); + QString name("DogecoinQt"); // Append a simple hash of the datadir // Note that GetDataDir(true) returns a different path |