Skip to content

Commit

Permalink
SYS-4116: Enable lift on eth-bridge (#427)
Browse files Browse the repository at this point in the history
Co-authored-by: aventus-ci-agent <ci-agent-bot@aventus.io>
  • Loading branch information
micaelffrancoAV and aventus-ci-agent committed Aug 16, 2024
1 parent b54c4aa commit 4eb1ff9
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 23 deletions.
38 changes: 19 additions & 19 deletions Cargo.lock

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

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ lto = "fat"
codegen-units = 1

[workspace.package]
version = "5.6.0"
version = "5.6.1"
authors = ["Aventus systems team"]
homepage = "https://www.aventus.io/"
repository = "https://github.com/Aventus-Network-Services/avn-node-parachain/"
Expand Down
4 changes: 2 additions & 2 deletions runtime/avn/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("avn-parachain"),
impl_name: create_runtime_str!("avn-parachain"),
authoring_version: 1,
spec_version: 71,
spec_version: 72,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down Expand Up @@ -641,7 +641,7 @@ pub struct EthBridgeAvnRuntimeEventsFilter;
impl EthereumEventsFilterTrait for EthBridgeAvnRuntimeEventsFilter {
fn get_filter() -> EthBridgeEventsFilter {
let allowed_events: BTreeSet<ValidEvents> =
vec![ValidEvents::AvtLowerClaimed].into_iter().collect();
vec![ValidEvents::AvtLowerClaimed, ValidEvents::Lifted].into_iter().collect();

EthBridgeEventsFilter::try_from(allowed_events).unwrap_or_default()
}
Expand Down
2 changes: 1 addition & 1 deletion runtime/test/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("avn-test-parachain"),
impl_name: create_runtime_str!("avn-test-parachain"),
authoring_version: 1,
spec_version: 71,
spec_version: 72,
impl_version: 0,
apis: RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit 4eb1ff9

Please sign in to comment.