We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f8c8a03 commit b85e111Copy full SHA for b85e111
universalClient/chains/common/event_processor.go
@@ -299,7 +299,8 @@ func (ep *EventProcessor) constructInbound(event *store.Event) (*uexecutortypes.
299
}
300
301
// Set recipient for transactions that involve funds
302
- if txType == uexecutortypes.TxType_FUNDS || txType == uexecutortypes.TxType_GAS {
+ if txType == uexecutortypes.TxType_FUNDS || txType == uexecutortypes.TxType_GAS ||
303
+ (txType == uexecutortypes.TxType_FUNDS_AND_PAYLOAD && eventData.FromCEA) {
304
inboundMsg.Recipient = eventData.Recipient
305
306
0 commit comments