| 401 | return true; |
| 402 | } |
| 403 | std::string ToString() const override |
| 404 | { |
| 405 | std::string ret = EncodeExtPubKey(m_root_extkey) + FormatHDKeypath(m_path); |
| 406 | if (IsRange()) { |
| 407 | ret += "/*"; |
| 408 | if (m_derive == DeriveType::HARDENED) ret += '\''; |
| 409 | } |
| 410 | return ret; |
| 411 | } |
| 412 | bool ToPrivateString(const SigningProvider& arg, std::string& out) const override |
| 413 | { |
| 414 | CExtKey key; |
nothing calls this directly
no test coverage detected