diff options
author | obscuren <geffobscura@gmail.com> | 2015-04-08 06:31:23 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-04-08 06:31:23 +0800 |
commit | 09147a50ede8c85022d115e23bb2ce067a50c8de (patch) | |
tree | 85de0b122771d1592f916395f21604f4848b1832 /event | |
parent | d09d2b96fcd90ed817cf6ae81671e4df9dba402f (diff) | |
download | go-tangerine-09147a50ede8c85022d115e23bb2ce067a50c8de.tar.gz go-tangerine-09147a50ede8c85022d115e23bb2ce067a50c8de.tar.zst go-tangerine-09147a50ede8c85022d115e23bb2ce067a50c8de.zip |
Improved tx pool to ignore invalid transactions
Transaction pool will attempt to ignore invalid transactions it had
previously encountered.
Diffstat (limited to 'event')
-rw-r--r-- | event/filter/eth_filter.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/event/filter/eth_filter.go b/event/filter/eth_filter.go index dc032b5c2..a1abe3418 100644 --- a/event/filter/eth_filter.go +++ b/event/filter/eth_filter.go @@ -6,8 +6,8 @@ import ( "sync" "github.com/ethereum/go-ethereum/core" - "github.com/ethereum/go-ethereum/event" "github.com/ethereum/go-ethereum/core/state" + "github.com/ethereum/go-ethereum/event" ) type FilterManager struct { |