| 181 | } |
| 182 | |
| 183 | void WalletStateBasic::db_commit() { |
| 184 | m_log(logging::INFO) << "WalletState::db_commit started... chain_height=" << m_chain_height; |
| 185 | m_db.commit_db_txn(); |
| 186 | m_log(logging::TRACE) << "WalletState::db_commit finished..."; |
| 187 | } |
| 188 | |
| 189 | std::string WalletStateBasic::format_output(const api::Output &v) const { |
| 190 | std::stringstream str; |
nothing calls this directly
no test coverage detected