| 183 | } |
| 184 | void learnRelatedScripts(const CPubKey& key, OutputType type) override { m_wallet.LearnRelatedScripts(key, type); } |
| 185 | bool addDestData(const CTxDestination& dest, const std::string& key, const std::string& value) override |
| 186 | { |
| 187 | LOCK(m_wallet.cs_wallet); |
| 188 | return m_wallet.AddDestData(dest, key, value); |
| 189 | } |
| 190 | bool eraseDestData(const CTxDestination& dest, const std::string& key) override |
| 191 | { |
| 192 | LOCK(m_wallet.cs_wallet); |
no test coverage detected