| 4085 | } |
| 4086 | |
| 4087 | CPubKey CWallet::GetBlindingPubKey(const CScript& script) const |
| 4088 | { |
| 4089 | CKey key = GetBlindingKey(&script); |
| 4090 | if (key.IsValid()) { |
| 4091 | return key.GetPubKey(); |
| 4092 | } |
| 4093 | |
| 4094 | return CPubKey(); |
| 4095 | } |
| 4096 | |
| 4097 | bool CWallet::LoadSpecificBlindingKey(const CScriptID& scriptid, const uint256& key) |
| 4098 | { |
no test coverage detected