| 25 | } |
| 26 | |
| 27 | uint160 PubkeyAddressBase::getPubkeyHash() const { |
| 28 | auto pubkey = getPubkey(); |
| 29 | if (pubkey) { |
| 30 | return pubkey->GetID(); |
| 31 | } else { |
| 32 | return getData()->address; |
| 33 | } |
| 34 | } |
| 35 | |
| 36 | ranges::any_view<Address> PubkeyAddressBase::getIncludingMultisigs() const { |
| 37 | auto access_ = &getAccess(); |