| 368 | return {}; |
| 369 | } |
| 370 | TransactionError fillPSBT(int sighash_type, |
| 371 | bool sign, |
| 372 | bool bip32derivs, |
| 373 | size_t* n_signed, |
| 374 | PartiallySignedTransaction& psbtx, |
| 375 | bool& complete) override |
| 376 | { |
| 377 | return m_wallet->FillPSBT(psbtx, complete, sighash_type, sign, bip32derivs, n_signed); |
| 378 | } |
| 379 | WalletBalances getBalances() override |
| 380 | { |
| 381 | const auto bal = GetBalance(*m_wallet); |
no test coverage detected