diff options
-rw-r--r-- | coreth.go | 2 | ||||
-rw-r--r-- | plugin/evm/vm.go | 3 |
2 files changed, 3 insertions, 2 deletions
@@ -90,7 +90,7 @@ func (self *ETHChain) PendingSize() (int, error) { } func (self *ETHChain) AddRemoteTxs(txs []*types.Transaction) []error { - return self.backend.TxPool().AddRemotesSync(txs) + return self.backend.TxPool().AddRemotes(txs) } func (self *ETHChain) AddLocalTxs(txs []*types.Transaction) []error { diff --git a/plugin/evm/vm.go b/plugin/evm/vm.go index 57b2eda..929725d 100644 --- a/plugin/evm/vm.go +++ b/plugin/evm/vm.go @@ -334,11 +334,12 @@ type ipFilter struct { } func (ipf ipFilter) ServeHTTP(writer http.ResponseWriter, request *http.Request) { - if ips, _, err := net.SplitHostPort(request.RemoteAddr); err != nil && ips == "127.0.0.1" { + if ips, _, err := net.SplitHostPort(request.RemoteAddr); err == nil && ips == "127.0.0.1" { ipf.handler.ServeHTTP(writer, request) return } writer.WriteHeader(404) + writer.Write([]byte("404 page not found")) } func newIPFilter(handler http.Handler) http.Handler { |