@@ -52,9 +52,9 @@ func (p *Task) ProcessTipSets(ctx context.Context, current *types.TipSet, execut
52
52
StateRoot : current .ParentState ().String (),
53
53
}
54
54
55
- messages , err := p .node .ChainGetMessagesInTipset (ctx , executed .Key ())
55
+ messages , err := p .node .ChainGetMessagesInTipset (ctx , current .Key ())
56
56
if err != nil {
57
- log .Errorf ("Error at getting messages. ts: %v, height: %v, err: %v" , executed .String (), executed .Height (), err )
57
+ log .Errorf ("Error at getting messages. ts: %v, height: %v, err: %v" , current .String (), current .Height (), err )
58
58
report .ErrorsDetected = err
59
59
return nil , report , nil
60
60
}
@@ -64,7 +64,7 @@ func (p *Task) ProcessTipSets(ctx context.Context, current *types.TipSet, execut
64
64
if message .Message == nil {
65
65
continue
66
66
}
67
- if ! util .IsEVMAddress (ctx , p .node , message .Message .To , executed .Key ()) {
67
+ if ! util .IsEVMAddress (ctx , p .node , message .Message .To , current .Key ()) {
68
68
continue
69
69
}
70
70
@@ -87,7 +87,7 @@ func (p *Task) ProcessTipSets(ctx context.Context, current *types.TipSet, execut
87
87
}
88
88
89
89
receiptObj := & fevm.FEVMReceipt {
90
- Height : int64 (executed .Height ()),
90
+ Height : int64 (current .Height ()),
91
91
TransactionHash : receipt .TransactionHash .String (),
92
92
TransactionIndex : uint64 (receipt .TransactionIndex ),
93
93
BlockHash : receipt .BlockHash .String (),
0 commit comments