| 144 | } |
| 145 | |
| 146 | void WalletState::db_commit() { |
| 147 | if (m_wallet.is_amethyst()) { |
| 148 | m_db.put("$address_count", seria::to_binary(m_wallet.get_actual_records_count()), false); |
| 149 | m_db.put("$oldest_timestamp", seria::to_binary(m_wallet.get_oldest_timestamp()), false); |
| 150 | } |
| 151 | WalletStateBasic::db_commit(); |
| 152 | } |
| 153 | |
| 154 | void WalletState::wallet_addresses_updated() { |
| 155 | if (m_wallet.is_amethyst()) |
nothing calls this directly
no test coverage detected