Skip to content

Commit

Permalink
bump v0.9.18-chainbridge.11
Browse files Browse the repository at this point in the history
  • Loading branch information
StewartYe committed Oct 26, 2022
1 parent 8a49f93 commit 786eb1b
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 20 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# v0.9.18-chainbridge.11

- update chainbridge agents, add storage of ethereum nonce

# v0.9.18-chainbridge.10

- integrate with chainbridge
Expand Down
18 changes: 9 additions & 9 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 node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jsonrpc-core = '18.0.0'
structopt = '0.3.25'

fuso-runtime = { path = '../runtime' }
fuso-verifier-rpc = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "fuso-verifier-rpc" }
fuso-verifier-rpc = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "fuso-verifier-rpc" }

clap = { version = "3.0", features = ["derive"] }
sc-cli = { version = "0.10.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.18", features = ["wasmtime"] }
Expand Down
16 changes: 8 additions & 8 deletions runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -67,15 +67,15 @@ frame-system-benchmarking = { version = "4.0.0-dev", default-features = false, g
hex-literal = { version = "0.3.4", optional = true }
pallet-multisig = { git = 'https://github.com/paritytech/substrate.git', branch = 'polkadot-v0.9.18', default-features = false }
# fusotao dependencies
fuso-support = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "fuso-support" }
pallet-fuso-verifier = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "pallet-fuso-verifier" }
pallet-fuso-token = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "pallet-fuso-token" }
pallet-fuso-foundation = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "pallet-fuso-foundation" }
pallet-fuso-reward = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "pallet-fuso-reward" }
fuso-verifier-runtime-api = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "fuso-verifier-runtime-api" }
fuso-support = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "fuso-support" }
pallet-fuso-verifier = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "pallet-fuso-verifier" }
pallet-fuso-token = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "pallet-fuso-token" }
pallet-fuso-foundation = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "pallet-fuso-foundation" }
pallet-fuso-reward = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "pallet-fuso-reward" }
fuso-verifier-runtime-api = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "fuso-verifier-runtime-api" }
# chainbridge dependencies
pallet-chainbridge = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "pallet-chainbridge" }
pallet-chainbridge-handler = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.2", default-features = false, package = "pallet-chainbridge-handler" }
pallet-chainbridge = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "pallet-chainbridge" }
pallet-chainbridge-handler = { git = "https://github.com/uinb/fusotao-protocol.git", tag = "v0.9.18.final.3", default-features = false, package = "pallet-chainbridge-handler" }

[build-dependencies]
substrate-wasm-builder = { version = "5.0.0-dev", git = "https://github.com/paritytech/substrate.git", branch = "polkadot-v0.9.18" }
Expand Down
4 changes: 2 additions & 2 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ pub use frame_support::{
};
use frame_support::{weights::DispatchClass, PalletId};
use frame_system::limits::{BlockLength, BlockWeights};
pub use fuso_support::derive_resource_id;
pub use pallet_balances::Call as BalancesCall;
use pallet_im_online::sr25519::AuthorityId as ImOnlineId;
use pallet_mmr_primitives as mmr;
Expand All @@ -50,7 +51,6 @@ use sp_runtime::{
transaction_validity::TransactionPriority,
FixedPointNumber, Perquintill,
};
pub use fuso_support::derive_resource_id;
pub use sp_runtime::{Perbill, Permill};
use static_assertions::const_assert;

Expand Down Expand Up @@ -115,7 +115,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
// `spec_version`, and `authoring_version` are the same between Wasm and native.
// This value is set to 100 to notify Polkadot-JS App (https://polkadot.js.org/apps) to use
// the compatible custom types.
spec_version: 129,
spec_version: 130,
impl_version: 1,
apis: RUNTIME_API_VERSIONS,
transaction_version: 2,
Expand Down

0 comments on commit 786eb1b

Please sign in to comment.