aboutsummaryrefslogtreecommitdiff
path: root/src/qt/paymentrequestplus.cpp
diff options
context:
space:
mode:
authorWladimir J. van der Laan <[email protected]>2013-09-09 03:55:45 -0700
committerWladimir J. van der Laan <[email protected]>2013-09-09 03:55:45 -0700
commit2bc004c658ab14f1708a40e1e15536d00553d50d (patch)
tree4d17c023e872e61a6011ab5fd9b92a682dd3f716 /src/qt/paymentrequestplus.cpp
parentMerge pull request #2968 from TheBlueMatt/master (diff)
parentfix some cosmetic glitches in the codebase (diff)
downloaddiscoin-2bc004c658ab14f1708a40e1e15536d00553d50d.tar.xz
discoin-2bc004c658ab14f1708a40e1e15536d00553d50d.zip
Merge pull request #2961 from Diapolo/cosmetic
fix some cosmetic glitches in the codebase
Diffstat (limited to 'src/qt/paymentrequestplus.cpp')
-rw-r--r--src/qt/paymentrequestplus.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/qt/paymentrequestplus.cpp b/src/qt/paymentrequestplus.cpp
index 50fb1bd77..f6a898ff7 100644
--- a/src/qt/paymentrequestplus.cpp
+++ b/src/qt/paymentrequestplus.cpp
@@ -80,7 +80,7 @@ bool PaymentRequestPlus::getMerchant(X509_STORE* certStore, QString& merchant) c
return false;
}
else {
- qDebug() << "PaymentRequestPlus::getMerchant : Payment request: unknown pki_type " << paymentRequest.pki_type().c_str();
+ qDebug() << "PaymentRequestPlus::getMerchant : Payment request: unknown pki_type " << QString::fromStdString(paymentRequest.pki_type());
return false;
}
@@ -152,7 +152,7 @@ bool PaymentRequestPlus::getMerchant(X509_STORE* certStore, QString& merchant) c
// Valid cert; check signature:
payments::PaymentRequest rcopy(paymentRequest); // Copy
rcopy.set_signature(std::string(""));
- std::string data_to_verify; // Everything but the signature
+ std::string data_to_verify; // Everything but the signature
rcopy.SerializeToString(&data_to_verify);
EVP_MD_CTX ctx;