-
Notifications
You must be signed in to change notification settings - Fork 1.1k
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
remove logic that stops gw loading until emergency mode is triggered or rpc conn is successful #6890
base: master
Are you sure you want to change the base?
Conversation
…or rpc conn is successful
Knock Knock! 🔍 Just thought I'd let you know that your PR title and story title look quite different. PR titles that closely resemble the story title make it easier for reviewers to understand the context of the PR. An easy-to-understand PR title a day makes the reviewer review away! 😛⚡️
Check out this guide to learn more about PR best-practices. |
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
API Changes no api changes detected |
PR Code Suggestions ✨Explore these optional code suggestions:
|
|
User description
TT-14089
Description
Related Issue
Motivation and Context
How This Has Been Tested
Screenshots (if appropriate)
Types of changes
Checklist
PR Type
Bug fix
Description
Removed logic that delays gateway loading until emergency mode or RPC connection.
Simplified the
Connect
function by removingwaitForClientReadiness
.Ensured gateway initialization proceeds without waiting for RPC readiness.
Changes walkthrough 📝
rpc_client.go
Removed client readiness wait logic in RPC connection
rpc/rpc_client.go
waitForClientReadiness
function entirely.Connect
function to no longer wait for client readiness.