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
|
BridgeID string
|
||||||
MsgHash common.Hash
|
MsgHash common.Hash
|
||||||
Direction entity.Direction
|
Direction entity.Direction
|
||||||
|
Sender common.Address
|
||||||
Receiver common.Address
|
Receiver common.Address
|
||||||
Value string
|
Value string
|
||||||
}
|
}
|
||||||
|
|
|
@ -49,6 +49,7 @@ func ercToNativeMessageToInfo(req *entity.ErcToNativeMessage) *ErcToNativeMessag
|
||||||
BridgeID: req.BridgeID,
|
BridgeID: req.BridgeID,
|
||||||
MsgHash: req.MsgHash,
|
MsgHash: req.MsgHash,
|
||||||
Direction: req.Direction,
|
Direction: req.Direction,
|
||||||
|
Sender: req.Sender,
|
||||||
Receiver: req.Receiver,
|
Receiver: req.Receiver,
|
||||||
Value: req.Value,
|
Value: req.Value,
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue