From 298d08dbf8b74a32f7bb74e25cc5bf729c35a6da Mon Sep 17 00:00:00 2001 From: Stephen Buttolph Date: Sun, 7 Jun 2020 21:27:09 +0000 Subject: fix minor typo --- coreth.go | 2 +- plugin/evm/vm.go | 3 ++- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/coreth.go b/coreth.go index 019f480..06399b9 100644 --- a/coreth.go +++ b/coreth.go @@ -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 { -- cgit v1.2.3-70-g09d2