GetPubKey overloads
Declared in <wallet/scriptpubkeyman.h>
Look up a public key by its key id.
virtual
bool
GetPubKey(
CKeyID const& address,
CPubKey& pubkey) const;
» more...
Retrieves the public key for the given address into vchPubKeyOut.
virtual
bool
GetPubKey(
CKeyID const& address,
CPubKey& vchPubKeyOut) const override;
» more...
| Name | Description |
|---|---|
| address | The key id to retrieve the public key for. |
| pubkey | Set to the matching public key on success. |
| vchPubKeyOut | Filled with the found public key. |