Skip to content
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

Fixed relayer metric value #2993

Merged
merged 2 commits into from
May 17, 2024
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
425 changes: 213 additions & 212 deletions Cargo.lock

Large diffs are not rendered by default.

22 changes: 11 additions & 11 deletions relay-clients/client-bridge-hub-kusama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] }

# Bridge dependencies

bp-bridge-hub-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-bridge-hub-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

# Substrate Dependencies

sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
26 changes: 13 additions & 13 deletions relay-clients/client-bridge-hub-polkadot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] }

# Bridge dependencies

bp-bridge-hub-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-bridge-hub-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

# Substrate Dependencies

sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
22 changes: 11 additions & 11 deletions relay-clients/client-bridge-hub-rococo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,18 +16,18 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] }

# Bridge dependencies

bp-bridge-hub-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-bridge-hub-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

# Substrate Dependencies

sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
26 changes: 13 additions & 13 deletions relay-clients/client-bridge-hub-westend/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,22 +16,22 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] }

# Bridge dependencies

bp-bridge-hub-westend = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-bridge-hub-westend = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-parachains = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

# Substrate Dependencies

sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

[dev-dependencies]
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
20 changes: 10 additions & 10 deletions relay-clients/client-kusama/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] }

# Bridge dependencies

bp-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-kusama = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

# Substrate Dependencies

sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
26 changes: 13 additions & 13 deletions relay-clients/client-polkadot-bulletin/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,19 +16,19 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] }

# Bridge dependencies

bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-bulletin = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-header-chain = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-messages = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot-bulletin = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bridge-runtime-common = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

# Substrate Dependencies

sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
20 changes: 10 additions & 10 deletions relay-clients/client-polkadot/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,17 +16,17 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] }

# Bridge dependencies

bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

# Substrate Dependencies

sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
18 changes: 9 additions & 9 deletions relay-clients/client-rococo/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,16 +16,16 @@ subxt = { version = "0.35.3", default-features = false, features = ["native"] }

# Bridge dependencies

bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
bp-polkadot-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
bp-rococo = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
relay-substrate-client = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
relay-utils = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }

# Substrate Dependencies

sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "master" }
sp-consensus-grandpa = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-core = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-runtime = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-session = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
sp-weights = { git = "https://github.com/paritytech/polkadot-sdk", branch = "sv-fix-relayer-version-metric" }
Loading