1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-06-18 04:40:03 +02:00

transport/channel.go: rename Action.Action to Action.Name

This commit is contained in:
Henrik Hautakoski 2023-03-07 18:53:52 +01:00
parent 7637b6e16b
commit 347de718af
3 changed files with 7 additions and 7 deletions

View file

@ -118,9 +118,9 @@ func (processor *ShipProcessor) processTraces(traces []*ship.TransactionTraceV0)
channels := []transport.Channel{
transport.Action{}.Channel(),
transport.Action{Action: act.Name}.Channel(),
transport.Action{Name: act.Name}.Channel(),
transport.Action{Contract: act.Contract}.Channel(),
transport.Action{Action: act.Name, Contract: act.Contract}.Channel(),
transport.Action{Name: act.Name, Contract: act.Contract}.Channel(),
}
for _, channel := range channels {