| 272 | return true; |
| 273 | } |
| 274 | bool ToNormalizedString(const SigningProvider& arg, std::string& ret, const DescriptorCache* cache) const override |
| 275 | { |
| 276 | ret = ToString(); |
| 277 | return true; |
| 278 | } |
| 279 | bool GetPrivKey(int pos, const SigningProvider& arg, CKey& key) const override |
| 280 | { |
| 281 | return arg.GetKey(m_pubkey.GetID(), key); |
nothing calls this directly
no test coverage detected