()
| 57 | func (x MinerInfos) Swap(i, j int) { x[i], x[j] = x[j], x[i] } |
| 58 | |
| 59 | func newMetaState() *metaState { |
| 60 | return &metaState{ |
| 61 | dirty: newMetaIndex(), |
| 62 | readonly: newMetaIndex(), |
| 63 | } |
| 64 | } |
| 65 | |
| 66 | func (s *metaState) loadAccountObject(k proto.AccountAddress) (o *types.Account, loaded bool) { |
| 67 | var old *types.Account |