(k proto.AccountAddress, amount uint64)
| 286 | } |
| 287 | |
| 288 | func (s *metaState) increaseAccountStableBalance(k proto.AccountAddress, amount uint64) error { |
| 289 | return s.increaseAccountToken(k, amount, types.Particle) |
| 290 | } |
| 291 | |
| 292 | func (s *metaState) decreaseAccountStableBalance(k proto.AccountAddress, amount uint64) error { |
| 293 | return s.decreaseAccountToken(k, amount, types.Particle) |