(k proto.AccountAddress)
| 212 | } |
| 213 | |
| 214 | func (s *metaState) deleteProviderObject(k proto.AccountAddress) { |
| 215 | // Use a nil pointer to mark a deletion, which will be later used by commit procedure. |
| 216 | s.dirty.provider[k] = nil |
| 217 | } |
| 218 | |
| 219 | func (s *metaState) commit() { |
| 220 | for k, v := range s.dirty.accounts { |
no outgoing calls
no test coverage detected