Skip to content

Commit

Permalink
fix(sequencer): bump penumbra dep to commit with ibc height fix (#1856)
Browse files Browse the repository at this point in the history
## Summary
bump penumbra dep to commit with ibc height fix as it was merged
upstream:
penumbra-zone/penumbra@ac7abac

## Background
see #1691

## Changes
- bump penumbra dep to commit with ibc height fix 

## Testing
it has been tested on the current live networks already
  • Loading branch information
noot authored Dec 9, 2024
1 parent 903e1f3 commit bbdf4a5
Show file tree
Hide file tree
Showing 3 changed files with 34 additions and 32 deletions.
57 changes: 29 additions & 28 deletions Cargo.lock

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

7 changes: 4 additions & 3 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -81,9 +81,10 @@ itoa = "1.0.10"
jsonrpsee = { version = "0.20" }
pbjson-types = "0.6"
# Note that when updating the penumbra versions, vendored types in `proto/sequencerapis/astria_vendored` may need to be updated as well.
penumbra-ibc = { git = "https://github.com/penumbra-zone/penumbra.git", tag = "v0.80.7", default-features = false }
penumbra-proto = { git = "https://github.com/penumbra-zone/penumbra.git", tag = "v0.80.7" }
penumbra-tower-trace = { git = "https://github.com/penumbra-zone/penumbra.git", tag = "v0.80.7" }
# can update to a tagged version when https://github.com/penumbra-zone/penumbra/commit/ac7abacc9bb09503d6fd6a396bc0b6850079084e is released
penumbra-ibc = { git = "https://github.com/penumbra-zone/penumbra.git", rev = "ac7abacc9bb09503d6fd6a396bc0b6850079084e", default-features = false }
penumbra-proto = { git = "https://github.com/penumbra-zone/penumbra.git", rev = "ac7abacc9bb09503d6fd6a396bc0b6850079084e" }
penumbra-tower-trace = { git = "https://github.com/penumbra-zone/penumbra.git", rev = "ac7abacc9bb09503d6fd6a396bc0b6850079084e" }
pin-project-lite = "0.2.13"
prost = "0.12"
rand = "0.8.5"
Expand Down
2 changes: 1 addition & 1 deletion crates/astria-sequencer/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ telemetry = { package = "astria-telemetry", path = "../astria-telemetry", featur
] }

borsh = { version = "1.5.1", features = ["bytes", "derive"] }
cnidarium = { git = "https://github.com/penumbra-zone/penumbra.git", tag = "v0.80.7", features = [
cnidarium = { git = "https://github.com/penumbra-zone/penumbra.git", rev = "ac7abacc9bb09503d6fd6a396bc0b6850079084e", features = [
"metrics",
] }
ibc-proto = { version = "0.41.0", features = ["server"] }
Expand Down

0 comments on commit bbdf4a5

Please sign in to comment.