Fix bug in runFilter

This commit is contained in:
Nick Johnson 2018-10-16 15:40:38 +01:00
parent b235d18367
commit 549d64929d

View file

@ -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,
})
}