| 28 | } |
| 29 | |
| 30 | void Balance::update(const graphene::chain::account_balance_object& update) |
| 31 | { |
| 32 | if (update.balance != amount) { |
| 33 | amount = update.balance.value; |
| 34 | emit amountChanged(); |
| 35 | } |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected