-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fixes for ethereum bridge and json representation of batch header. #1953
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
if err != nil { | ||
if !errors.Is(err, errutil.ErrCrossChainBundleNoBatches) { | ||
g.logger.Error("Unable to export cross chain bundle from enclave", log.ErrKey, err) | ||
} | ||
if errors.Is(err, context.DeadlineExceeded) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
so this is the fix for the load issue?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
No, this is just a patch to shutdown bundle exports on UAT and Dev testnet if we ever hit it
Why this change is needed
The EthereumBridge needs to call the message bus in order to send the value over to the layer 1.
The header now encodes a cross chain tree root hash in the json serialisation exposed through the external rpc
What changes were made as part of this PR
Please provide a high level list of the changes made
PR checks pre-merging
Please indicate below by ticking the checkbox that you have read and performed the required
PR checks