Skip to content

Commit

Permalink
fix dest tx hash
Browse files Browse the repository at this point in the history
  • Loading branch information
bd21 committed Oct 17, 2023
1 parent d099264 commit f8f44f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/process.go
Original file line number Diff line number Diff line change
Expand Up @@ -139,7 +139,7 @@ func StartProcessor(cfg config.Config, logger log.Logger, processingQueue chan *
processingQueue <- msg
continue
}
msg.DestTxHash = response.To().Hex()
msg.DestTxHash = response.Hash().Hex()
logger.Info(fmt.Sprintf("Successfully broadcast %s to Ethereum. Tx hash: %s", msg.SourceTxHash, msg.DestTxHash))
case 4: // noble
response, err := noble.Broadcast(cfg, logger, msg, sequenceMap)
Expand Down

0 comments on commit f8f44f9

Please sign in to comment.