wallet_api: getPassword
This commit is contained in:
parent
39e16ffcf2
commit
f34e643c18
|
@ -859,6 +859,11 @@ bool WalletImpl::setPassword(const std::string &password)
|
||||||
return status() == Status_Ok;
|
return status() == Status_Ok;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
std::string WalletImpl::getPassword() const
|
||||||
|
{
|
||||||
|
return m_password;
|
||||||
|
}
|
||||||
|
|
||||||
bool WalletImpl::setDevicePin(const std::string &pin)
|
bool WalletImpl::setDevicePin(const std::string &pin)
|
||||||
{
|
{
|
||||||
clearStatus();
|
clearStatus();
|
||||||
|
|
|
@ -96,6 +96,7 @@ public:
|
||||||
std::string errorString() const override;
|
std::string errorString() const override;
|
||||||
void statusWithErrorString(int& status, std::string& errorString) const override;
|
void statusWithErrorString(int& status, std::string& errorString) const override;
|
||||||
bool setPassword(const std::string &password) override;
|
bool setPassword(const std::string &password) override;
|
||||||
|
std::string getPassword() const override;
|
||||||
bool setDevicePin(const std::string &password) override;
|
bool setDevicePin(const std::string &password) override;
|
||||||
bool setDevicePassphrase(const std::string &password) override;
|
bool setDevicePassphrase(const std::string &password) override;
|
||||||
std::string address(uint32_t accountIndex = 0, uint32_t addressIndex = 0) const override;
|
std::string address(uint32_t accountIndex = 0, uint32_t addressIndex = 0) const override;
|
||||||
|
|
|
@ -552,6 +552,7 @@ struct Wallet
|
||||||
//! returns both error and error string atomically. suggested to use in instead of status() and errorString()
|
//! returns both error and error string atomically. suggested to use in instead of status() and errorString()
|
||||||
virtual void statusWithErrorString(int& status, std::string& errorString) const = 0;
|
virtual void statusWithErrorString(int& status, std::string& errorString) const = 0;
|
||||||
virtual bool setPassword(const std::string &password) = 0;
|
virtual bool setPassword(const std::string &password) = 0;
|
||||||
|
virtual std::string getPassword() const = 0;
|
||||||
virtual bool setDevicePin(const std::string &pin) { (void)pin; return false; };
|
virtual bool setDevicePin(const std::string &pin) { (void)pin; return false; };
|
||||||
virtual bool setDevicePassphrase(const std::string &passphrase) { (void)passphrase; return false; };
|
virtual bool setDevicePassphrase(const std::string &passphrase) { (void)passphrase; return false; };
|
||||||
virtual std::string address(uint32_t accountIndex = 0, uint32_t addressIndex = 0) const = 0;
|
virtual std::string address(uint32_t accountIndex = 0, uint32_t addressIndex = 0) const = 0;
|
||||||
|
|
Loading…
Reference in New Issue