| 213 | } |
| 214 | |
| 215 | bool SignTransaction(CWallet* wallet, CMutableTransaction& mtx) { |
| 216 | LOCK2(cs_main, wallet->cs_wallet); |
| 217 | bool no_forkid = !IsBTGHardForkEnabledForCurrentBlock(Params().GetConsensus()); |
| 218 | return wallet->SignTransaction(mtx, no_forkid); |
| 219 | } |
| 220 | |
| 221 | Result CommitTransaction(CWallet* wallet, const uint256& txid, CMutableTransaction&& mtx, std::vector<std::string>& errors, uint256& bumped_txid) |
| 222 | { |
no test coverage detected