From 549d64929d5bed7bf0cf0778bcde0186bd7ff346 Mon Sep 17 00:00:00 2001 From: Nick Johnson Date: Tue, 16 Oct 2018 15:40:38 +0100 Subject: [PATCH] Fix bug in runFilter --- ethgraphql/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ethgraphql/main.go b/ethgraphql/main.go index 41753e9448..5b3975ea6b 100644 --- a/ethgraphql/main.go +++ b/ethgraphql/main.go @@ -710,7 +710,7 @@ func runFilter(ctx context.Context, node *node.Node, filter *filters.Filter) ([] for _, log := range logs { ret = append(ret, &Log{ node: node, - transaction: &Transaction{hash: log.TxHash}, + transaction: &Transaction{node: node, hash: log.TxHash}, log: log, }) }