Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
69 changes: 27 additions & 42 deletions Cargo.lock

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

18 changes: 8 additions & 10 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,6 @@ members = [
"client/network",
"miner-api",
"node",
"pallets/balances",
"pallets/merkle-airdrop",
"pallets/mining-rewards",
"pallets/qpow",
Expand Down Expand Up @@ -130,7 +129,7 @@ wasm-timer = { version = "0.2.5" }
zeroize = { version = "1.7.0", default-features = false }

# Own dependencies
pallet-balances = { path = "./pallets/balances", default-features = false }
pallet-balances = { version = "42.0.0", default-features = false }
pallet-merkle-airdrop = { path = "./pallets/merkle-airdrop", default-features = false }
pallet-mining-rewards = { path = "./pallets/mining-rewards", default-features = false }
pallet-qpow = { path = "./pallets/qpow", default-features = false }
Expand All @@ -150,19 +149,19 @@ sp-consensus-qpow = { path = "./primitives/consensus/qpow", default-features = f

# Quantus network dependencies
qp-plonky2 = { version = "1.1.3", default-features = false }
qp-poseidon = { version = "1.0.3", default-features = false }
qp-poseidon-core = { version = "1.0.3", default-features = false, features = ["p2", "p3"] }
qp-poseidon = { version = "1.0.5", default-features = false }
qp-poseidon-core = { version = "1.0.5", default-features = false, features = ["p2", "p3"] }
qp-rusty-crystals-dilithium = { version = "2.0.0", default-features = false }
qp-rusty-crystals-hdwallet = { version = "1.0.0" }
qp-wormhole-circuit = { version = "0.1.3", default-features = false }
qp-wormhole-circuit-builder = { version = "0.1.4", default-features = false }
qp-wormhole-prover = { version = "0.1.4", default-features = false, features = [
qp-wormhole-circuit = { version = "0.1.7", default-features = false }
qp-wormhole-circuit-builder = { version = "0.1.7", default-features = false }
qp-wormhole-prover = { version = "0.1.7", default-features = false, features = [
"no_random",
] }
qp-wormhole-verifier = { version = "0.1.4", default-features = false, features = [
qp-wormhole-verifier = { version = "0.1.7", default-features = false, features = [
"no_random",
] }
qp-zk-circuits-common = { version = "0.1.4", default-features = false, features = [
qp-zk-circuits-common = { version = "0.1.7", default-features = false, features = [
"no_random",
] }

Expand Down Expand Up @@ -244,7 +243,6 @@ sc-network = { path = "client/network" }
sp-state-machine = { path = "./primitives/state-machine" }
sp-trie = { path = "./primitives/trie" }


[profile.release]
opt-level = 3
panic = "unwind"
Expand Down
4 changes: 4 additions & 0 deletions node/src/benchmarking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,9 @@ pub fn create_benchmark_extrinsic(
quantus_runtime::transaction_extensions::ReversibleTransactionExtension::<
runtime::Runtime,
>::new(),
quantus_runtime::transaction_extensions::WormholeProofRecorderExtension::<
runtime::Runtime,
>::new(),
);

let raw_payload = runtime::SignedPayload::from_raw(
Expand All @@ -143,6 +146,7 @@ pub fn create_benchmark_extrinsic(
(),
None,
(),
(),
),
);
let signature = raw_payload.using_encoded(|e| sender.sign(e));
Expand Down
65 changes: 0 additions & 65 deletions pallets/balances/Cargo.toml

This file was deleted.

Loading
Loading