| 27 | |
| 28 | namespace wallet{ |
| 29 | static void AddTx(CWallet& wallet) |
| 30 | { |
| 31 | CMutableTransaction mtx; |
| 32 | mtx.vout.emplace_back(COIN, GetScriptForDestination(*Assert(wallet.GetNewDestination(OutputType::BECH32, "")))); |
| 33 | mtx.vin.emplace_back(); |
| 34 | |
| 35 | wallet.AddToWallet(MakeTransactionRef(mtx), TxStateInactive{}); |
| 36 | } |
| 37 | |
| 38 | static void WalletLoadingDescriptors(benchmark::Bench& bench) |
| 39 | { |
no test coverage detected