mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-19 18:32:23 +00:00
Fix bug in runFilter
This commit is contained in:
parent
b235d18367
commit
549d64929d
1 changed files with 1 additions and 1 deletions
|
|
@ -710,7 +710,7 @@ func runFilter(ctx context.Context, node *node.Node, filter *filters.Filter) ([]
|
||||||
for _, log := range logs {
|
for _, log := range logs {
|
||||||
ret = append(ret, &Log{
|
ret = append(ret, &Log{
|
||||||
node: node,
|
node: node,
|
||||||
transaction: &Transaction{hash: log.TxHash},
|
transaction: &Transaction{node: node, hash: log.TxHash},
|
||||||
log: log,
|
log: log,
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue