| 672 | } |
| 673 | |
| 674 | bool PublicOnlySigningProvider::GetPubKey(const CKeyID &address, CPubKey& pubkey) const |
| 675 | { |
| 676 | return m_provider->GetPubKey(address, pubkey); |
| 677 | } |
| 678 | |
| 679 | bool FlatSigningProvider::GetCScript(const CScriptID& scriptid, CScript& script) const { return LookupHelper(scripts, scriptid, script); } |
| 680 | bool FlatSigningProvider::GetPubKey(const CKeyID& keyid, CPubKey& pubkey) const { return LookupHelper(pubkeys, keyid, pubkey); } |