We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b47fb commit 412c595Copy full SHA for 412c595
universalClient/chains/common/event_processor.go
@@ -303,8 +303,8 @@ func (ep *EventProcessor) constructInbound(event *store.Event) (*uexecutortypes.
303
}
304
305
306
- // Check if VerificationData is 0x and replace with TxHash
307
- if inboundMsg.UniversalPayload != nil && inboundMsg.UniversalPayload.VType == uexecutortypes.VerificationType_universalTxVerification {
+ // Use event's VerificationData if present, otherwise fall back to txHash
+ if eventData.VerificationData == "" || eventData.VerificationData == "0x" {
308
inboundMsg.VerificationData = txHashHex
309
} else {
310
inboundMsg.VerificationData = eventData.VerificationData
0 commit comments