go-eth-proxy

Unnamed repository; edit this file 'description' to name the repository.
Info | Log | Files | Refs

commit b79acb89533373e41477aa70ec8634d1a060dd21
parent 1c573f609d5231c2562551f3163e043db9b6a145
Author: lash <dev@holbrook.no>
Date:   Fri, 28 Jun 2024 21:49:28 +0100

Correct muxer tx by hash method name

Diffstat:
Mproxy/rpc.go | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/proxy/rpc.go b/proxy/rpc.go @@ -68,7 +68,7 @@ func (s *ProxyServer) ServeHTTP(w http.ResponseWriter, r *http.Request) { r.Body = io.NopCloser(rr) for _, k := range([]string{ - "eth_getTransactionFromHash", + "eth_getTransactionByHash", }) { if msg.Method == k { log.Printf("match %s", msg.Method)