-
Notifications
You must be signed in to change notification settings - Fork 100
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
Eth2-to-Near-relay: minor improvements, tests improvements and fixes #818
Conversation
481362f
to
b859cab
Compare
@olga24912 please merge the |
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.
One of the tests is failing.
Also please add a comment to the ./test.sh script, to clarify how to run the tests locally
#export API_KEY=<YOUR_INFURA_API_KEY>
@@ -35,6 +35,8 @@ impl Eth1RPCClient { | |||
let val: Value = serde_json::from_str(&res)?; | |||
let mut block_json = serde_json::to_string(&val["result"])?; | |||
|
|||
println!("{}", block_json); |
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.
btw, IMO this line shouldn't be here
#790