Remove handling of duplicate storage diffs in watcher

- Can push this responsibility down to the transformers
- Update docs to reflect that transformers should handle duplicates
This commit is contained in:
Rob Mulholand
2019-05-20 13:29:09 -05:00
parent 79765c7998
commit e2909797fc
6 changed files with 5 additions and 30 deletions
-3
View File
@@ -17,12 +17,9 @@
package utils
import (
"errors"
"fmt"
)
var ErrRowExists = errors.New("parsed row for storage diff already exists")
type ErrContractNotFound struct {
Contract string
}