-
Notifications
You must be signed in to change notification settings - Fork 955
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
Ethereum bridge VP and e2e test clean up #796
Conversation
3708b3f
to
eb5e239
Compare
pls update wasm |
92ffdcb
to
ac80c12
Compare
57a18e1
to
f165cf3
Compare
f165cf3
to
8efb474
Compare
/// # Examples | ||
/// | ||
/// ``` | ||
/// let storage_key = storage_key("queue"); | ||
/// assert_eq!(storage_key, "#atest1v9hx7w36g42ysgzzwf5kgem9ypqkgerjv4ehxgpqyqszqgpqyqszqgpqyqszqgpqyqszqgpq8f99ew/queue"); | ||
/// ``` | ||
fn storage_key(path: &str) -> String { | ||
format!("#{ETH_BRIDGE_ADDRESS}/{}", path) | ||
format!("#{}/{}", eth_bridge::vp::ADDRESS, path) |
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.
is this the same as namada_core::ledger::eth_bridge::ADDRESS
?
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.
I think so but namada_core::ledger::eth_bridge::ADDRESS
isn't present in this PR. This PR is a rework of a small cleanup PR (#323) which never got merged
the tx data passed to the |
* james/mainline/ethbridge-e2e-cleanup: Add changelog Add comment for the test Simplify test and remove references to queue key Remove references to anoman/anomac Remove no longer used eth_bridge::storage module Rename test to unauthorized_tx_cannot_write_storage Don't use duplicate ETH_BRIDGE_ADDRESS
Closes #668
This PR cleans up some stale code relating to the Ethereum bridge in
main
, and tidies up an e2e test. Adapted from #323.