| 193 | } |
| 194 | |
| 195 | bool FillableSigningProvider::AddKeyPubKey(const CKey& key, const CPubKey &pubkey) |
| 196 | { |
| 197 | LOCK(cs_KeyStore); |
| 198 | mapKeys[pubkey.GetID()] = key; |
| 199 | ImplicitlyLearnRelatedKeyScripts(pubkey); |
| 200 | return true; |
| 201 | } |
| 202 | |
| 203 | bool FillableSigningProvider::HaveKey(const CKeyID &address) const |
| 204 | { |