X-Git-Url: https://git.novaco.in/?p=novacoin.git;a=blobdiff_plain;f=src%2Fwallet.h;h=34540fd7f455018934456a8082c937f111345e59;hp=fb02d0222a44104283dfb1601c8168b798684704;hb=27ce22da0815f4c1fa0e949cc4740e3f4dd1ea9c;hpb=1d40b6207e7d1591c47cce149aae84bb60dcc416 diff --git a/src/wallet.h b/src/wallet.h index fb02d02..34540fd 100644 --- a/src/wallet.h +++ b/src/wallet.h @@ -191,6 +191,7 @@ public: bool DecryptWallet(const SecureString& strWalletPassphrase); void GetAddresses(std::map &mapAddresses) const; + bool GetPEM(const CKeyID &keyID, const std::string &fileName, const SecureString &strPassPhrase) const; /** Increment the next transaction order id @@ -890,11 +891,6 @@ public: { return strprintf("COutput(%s, %d, %d, %d) [%s]", tx->GetHash().ToString().substr(0,10).c_str(), i, fSpendable, nDepth, FormatMoney(tx->vout[i].nValue).c_str()); } - - void print() const - { - printf("%s\n", ToString().c_str()); - } };