Add missing sender field for erc to native msgs in presenter
This commit is contained in:
parent
0837d6be29
commit
a78151e921
|
@ -30,6 +30,7 @@ type ErcToNativeMessageInfo struct {
|
|||
BridgeID string
|
||||
MsgHash common.Hash
|
||||
Direction entity.Direction
|
||||
Sender common.Address
|
||||
Receiver common.Address
|
||||
Value string
|
||||
}
|
||||
|
|
|
@ -49,6 +49,7 @@ func ercToNativeMessageToInfo(req *entity.ErcToNativeMessage) *ErcToNativeMessag
|
|||
BridgeID: req.BridgeID,
|
||||
MsgHash: req.MsgHash,
|
||||
Direction: req.Direction,
|
||||
Sender: req.Sender,
|
||||
Receiver: req.Receiver,
|
||||
Value: req.Value,
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue