Skip to content

Commit

Permalink
bump astria dep to latest
Browse files Browse the repository at this point in the history
  • Loading branch information
noot committed May 20, 2024
1 parent 71eb7d1 commit 96dff08
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
8 changes: 5 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions crates/relayer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@ ibc-proto = { version = "0.41.0", features = ["serde"] }
ibc-telemetry = { version = "0.26.4", path = "../telemetry", optional = true }
ibc-relayer-types = { version = "0.26.4", path = "../relayer-types", features = ["mocks"] }

astria-core = { git = "https://github.com/astriaorg/astria", rev = "53244b59be27f80a1b4062a8e96f452be98977c0" }
astria-sequencer-client = { git = "https://github.com/astriaorg/astria", rev = "53244b59be27f80a1b4062a8e96f452be98977c0", features = [ "http" ] }
astria-core = { git = "https://github.com/astriaorg/astria", rev = "8f261a4cadc9631f319b1872c2afdc64812d2ca4" }
astria-sequencer-client = { git = "https://github.com/astriaorg/astria", rev = "8f261a4cadc9631f319b1872c2afdc64812d2ca4", features = [ "http" ] }
ed25519-consensus = "2.1.0"
ibc-types = "0.12.0"
jmt = "0.6"
Expand Down
2 changes: 1 addition & 1 deletion crates/relayer/src/chain/astria/endpoint.rs
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,7 @@ impl AstriaEndpoint {
actions.push(Action::Ibc(non_raw));
}

let signing_key: ed25519_consensus::SigningKey =
let signing_key: astria_core::crypto::SigningKey =
(*self.get_key()?.signing_key().as_bytes()).into(); // TODO cache this
let address = Address::from_verification_key(signing_key.verification_key());
let nonce = self
Expand Down
1 change: 1 addition & 0 deletions crates/relayer/src/transfer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ fn build_transfer_message_astria(
timeout_height: Some(timeout_height),
timeout_time: timeout_timestamp.nanoseconds(),
fee_asset_id: default_native_asset_id().as_ref().to_vec(),
memo: "".to_string(),
};

Any {
Expand Down

0 comments on commit 96dff08

Please sign in to comment.