diff options
| author | Ben Woosley <[email protected]> | 2020-01-15 13:40:14 -0800 |
|---|---|---|
| committer | Ben Woosley <[email protected]> | 2020-06-19 12:14:07 -0700 |
| commit | 2c54217f913967703b404747133be67cf2f4feac (patch) | |
| tree | 5e0e846cd14a58414943f5f8a91ff055bbd0ee63 /src/script/standard.h | |
| parent | Convert CPubKey to WitnessV0KeyHash directly (diff) | |
| download | discoin-2c54217f913967703b404747133be67cf2f4feac.tar.xz discoin-2c54217f913967703b404747133be67cf2f4feac.zip | |
Use explicit conversion from PKHash -> CKeyID
These types are equivalent, in data etc, so they need only their
data cast across.
Note a function is used rather than a casting
operator as CKeyID is defined at a lower level than script/standard
Diffstat (limited to 'src/script/standard.h')
| -rw-r--r-- | src/script/standard.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/script/standard.h b/src/script/standard.h index 382d8d002..1c630744b 100644 --- a/src/script/standard.h +++ b/src/script/standard.h @@ -79,6 +79,7 @@ struct PKHash : public uint160 explicit PKHash(const uint160& hash) : uint160(hash) {} explicit PKHash(const CPubKey& pubkey); }; +CKeyID ToKeyID(const PKHash& key_hash); struct WitnessV0KeyHash; struct ScriptHash : public uint160 |