| 338 | } |
| 339 | |
| 340 | bool PartiallySignedTransaction::IsBlinded() const |
| 341 | { |
| 342 | for (const PSBTOutput& out : outputs) { |
| 343 | if (out.IsBlinded()) { |
| 344 | return true; |
| 345 | } |
| 346 | } |
| 347 | return false; |
| 348 | } |
| 349 | |
| 350 | bool PartiallySignedTransaction::IsFullyBlinded() const |
| 351 | { |
no test coverage detected