1
0
Fork 0
mirror of https://github.com/eosswedenorg/thalos synced 2026-08-23 19:48:12 +02:00

transport/message/types.go: get rid of eos-go here.

This commit is contained in:
Henrik Hautakoski 2023-01-19 19:04:19 +01:00
parent 2bec1f09c5
commit e0bf53496a
2 changed files with 10 additions and 14 deletions

View file

@ -79,10 +79,10 @@ func (processor *ShipProcessor) processTraces(traces []*ship.TransactionTraceV0)
act_trace := actionTraceVar.Impl.(*ship.ActionTraceV0)
act := message.ActionTrace{
TxID: trace.ID,
Receiver: act_trace.Receiver,
Contract: act_trace.Act.Account,
Action: act_trace.Act.Name,
TxID: trace.ID.String(),
Receiver: act_trace.Receiver.String(),
Contract: act_trace.Act.Account.String(),
Action: act_trace.Act.Name.String(),
HexData: hex.EncodeToString(act_trace.Act.Data),
}