diff options
| author | Philip Kaufmann <[email protected]> | 2014-12-12 10:21:07 +0100 |
|---|---|---|
| committer | Philip Kaufmann <[email protected]> | 2015-04-15 14:31:49 +0200 |
| commit | d19ae3cf665de269c5dc4e2d9ed5ebe954b88be8 (patch) | |
| tree | 44ffbcedf1c7fa21d2cc22ab23b6971ca8e80a17 /src | |
| parent | [Qt] paymentserver: better logging of invalid certs (diff) | |
| download | discoin-d19ae3cf665de269c5dc4e2d9ed5ebe954b88be8.tar.xz discoin-d19ae3cf665de269c5dc4e2d9ed5ebe954b88be8.zip | |
[Qt] remove unused PaymentRequestPlus::getPKIType function
Diffstat (limited to 'src')
| -rw-r--r-- | src/qt/paymentrequestplus.cpp | 6 | ||||
| -rw-r--r-- | src/qt/paymentrequestplus.h | 1 |
2 files changed, 0 insertions, 7 deletions
diff --git a/src/qt/paymentrequestplus.cpp b/src/qt/paymentrequestplus.cpp index b69461ad9..de222fe14 100644 --- a/src/qt/paymentrequestplus.cpp +++ b/src/qt/paymentrequestplus.cpp @@ -59,12 +59,6 @@ bool PaymentRequestPlus::IsInitialized() const return paymentRequest.IsInitialized(); } -QString PaymentRequestPlus::getPKIType() const -{ - if (!IsInitialized()) return QString("none"); - return QString::fromStdString(paymentRequest.pki_type()); -} - bool PaymentRequestPlus::getMerchant(X509_STORE* certStore, QString& merchant) const { merchant.clear(); diff --git a/src/qt/paymentrequestplus.h b/src/qt/paymentrequestplus.h index 61f8a3415..99a7186b8 100644 --- a/src/qt/paymentrequestplus.h +++ b/src/qt/paymentrequestplus.h @@ -29,7 +29,6 @@ public: bool SerializeToString(std::string* output) const; bool IsInitialized() const; - QString getPKIType() const; // Returns true if merchant's identity is authenticated, and // returns human-readable merchant identity in merchant bool getMerchant(X509_STORE* certStore, QString& merchant) const; |