| 31 | } |
| 32 | |
| 33 | bool PartiallySignedTransaction::IsNull() const |
| 34 | { |
| 35 | return !tx && inputs.empty() && outputs.empty() && unknown.empty(); |
| 36 | } |
| 37 | |
| 38 | bool PartiallySignedTransaction::Merge(const PartiallySignedTransaction& psbt) |
| 39 | { |
no test coverage detected