| 9 | using namespace cn; |
| 10 | |
| 11 | PreparedWalletTransaction::PreparedWalletTransaction(const Hash &tid, size_t size, TransactionPrefix &&ttx, |
| 12 | const Wallet::OutputHandler &o_handler, const SecretKey &view_secret_key) |
| 13 | : tid(tid), size(size), tx(std::move(ttx)) { |
| 14 | prepare(o_handler, view_secret_key); |
| 15 | } |
| 16 | |
| 17 | PreparedWalletTransaction::PreparedWalletTransaction(const Hash &tid, size_t size, Transaction &&tx, |
| 18 | const Wallet::OutputHandler &o_handler, const SecretKey &view_secret_key) |
nothing calls this directly
no outgoing calls
no test coverage detected