| 13 | |
| 14 | template<typename M, typename K, typename V> |
| 15 | bool LookupHelper(const M& map, const K& key, V& value) |
| 16 | { |
| 17 | auto it = map.find(key); |
| 18 | if (it != map.end()) { |
| 19 | value = it->second; |
| 20 | return true; |
| 21 | } |
| 22 | return false; |
| 23 | } |
| 24 | |
| 25 | bool HidingSigningProvider::GetCScript(const CScriptID& scriptid, CScript& script) const |
| 26 | { |
no test coverage detected