(k proto.AccountAddress, amount uint64)
| 290 | } |
| 291 | |
| 292 | func (s *metaState) decreaseAccountStableBalance(k proto.AccountAddress, amount uint64) error { |
| 293 | return s.decreaseAccountToken(k, amount, types.Particle) |
| 294 | } |
| 295 | |
| 296 | func (s *metaState) transferAccountToken(transfer *types.Transfer) (err error) { |
| 297 | if transfer.Signee == nil { |