Skip to content

Commit

Permalink
Merge pull request #16 from ideal-lab5/jg/runtime-v4
Browse files Browse the repository at this point in the history
feat: use drand QuicknetVerifier
  • Loading branch information
juangirini authored Dec 17, 2024
2 parents 1d0b98e + 5b2f80b commit bf614bb
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 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 @@ -11,7 +11,7 @@ authors = ["Ideal Labs <hello@idealabs.network>"]
repository = "https://github.com/ideal-lab5/ideal-network"
homepage = "https://idealabs.network"
license = "Apache-2.0"
version = "0.1.3"
version = "0.1.4"

[workspace.lints.rust]
suspicious_double_ref_op = { level = "allow", priority = 2 }
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[package]
name = "ideal-nw-runtime"
description = "Ideal Network Runtime"
version = "0.1.3"
version = "0.1.4"
license.workspace = true
authors.workspace = true
homepage.workspace = true
Expand Down
2 changes: 1 addition & 1 deletion runtime/src/configs/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -309,7 +309,7 @@ impl pallet_drand::Config for Runtime {
type RuntimeEvent = RuntimeEvent;
type WeightInfo = pallet_drand::weights::SubstrateWeight<Runtime>;
type AuthorityId = pallet_drand::crypto::TestAuthId;
type Verifier = pallet_drand::verifier::UnsafeSkipVerifier;
type Verifier = pallet_drand::verifier::QuicknetVerifier;
type UnsignedPriority = UnsignedPriority;
type HttpFetchTimeout = HttpFetchTimeout;
type ApiEndpoint = ApiEndpoint;
Expand Down
2 changes: 1 addition & 1 deletion runtime/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!("ideal-nw-runtime"),
impl_name: create_runtime_str!("ideal-nw-runtime"),
authoring_version: 1,
spec_version: 3,
spec_version: 4,
impl_version: 0,
apis: apis::RUNTIME_API_VERSIONS,
transaction_version: 1,
Expand Down

0 comments on commit bf614bb

Please sign in to comment.