Skip to content

Commit

Permalink
Disable DID's extrinsics
Browse files Browse the repository at this point in the history
  • Loading branch information
olegnn committed Jan 16, 2025
1 parent 857bf9f commit 9b2ed64
Show file tree
Hide file tree
Showing 6 changed files with 20 additions and 16 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ jobs:
toolchain: nightly-2023-03-09
override: true
components: rustfmt
- name: Install rustfmt
run: rustup component add --toolchain nightly-2023-03-09 rustfmt
- name: Ensure Standard Formatting
run: cargo +nightly-2023-03-09 fmt --all -- --check

Expand Down
2 changes: 2 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,8 @@ jobs:
run: rustup target add wasm32-unknown-unknown --toolchain nightly-2023-03-09
- name: Ensure docs are buildable
run: cargo doc --no-deps
- name: Install rustfmt
run: rustup component add --toolchain nightly-2023-03-09 rustfmt
- name: Run tests
run: cargo test --release --all

Expand Down
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.

4 changes: 2 additions & 2 deletions node/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ authors = ["Dock.io"]
build = "build.rs"
edition = "2021"
name = "dock-node"
version = "0.32.0"
version = "0.33.0"

[package.metadata.docs.rs]
targets = ["x86_64-unknown-linux-gnu"]
Expand All @@ -28,7 +28,7 @@ optional = true

[dependencies.dock-runtime]
path = "../runtime"
version = "0.32.0"
version = "0.33.0"

[dependencies.beefy-primitives]
git = "https://github.com/paritytech/substrate.git"
Expand Down
2 changes: 1 addition & 1 deletion runtime/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
authors = ["Dock.io"]
edition = "2021"
name = "dock-runtime"
version = "0.32.0"
version = "0.33.0"
license = "Apache-2.0"

[package.metadata.docs.rs]
Expand Down
22 changes: 11 additions & 11 deletions runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -200,7 +200,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
spec_name: create_runtime_str!("dock-pos-dev-runtime"),
impl_name: create_runtime_str!("Dock"),
authoring_version: 1,
spec_version: 66,
spec_version: 67,
impl_version: 2,
transaction_version: 2,
apis: RUNTIME_API_VERSIONS,
Expand Down Expand Up @@ -1781,15 +1781,15 @@ construct_runtime!(
Authorship: pallet_authorship::{Pallet, Call, Storage} = 6,
TransactionPayment: transaction_payment::{Pallet, Storage, Event<T>} = 7,
Utility: pallet_utility::{Pallet, Call, Event} = 8,
OffchainSignatures: offchain_signatures::{Pallet, Call, Storage, Event} = 9,
DIDModule: did::{Pallet, Call, Storage, Event<T>, Config<T>} = 10,
Revoke: revoke::{Pallet, Call, Storage, Event} = 11,
BlobStore: blob::{Pallet, Call, Storage} = 12,
Master: master::{Pallet, Call, Storage, Event<T>, Config<T>} = 13,
OffchainSignatures: offchain_signatures::{Pallet, Storage, Event} = 9,
DIDModule: did::{Pallet, Storage, Event<T>, Config<T>} = 10,
Revoke: revoke::{Pallet, Storage, Event} = 11,
BlobStore: blob::{Pallet, Storage} = 12,
Master: master::{Pallet, Storage, Event<T>, Config<T>} = 13,
Sudo: sudo::{Pallet, Call, Storage, Event<T>, Config<T>} = 14,
MigrationModule: dock_token_migration::{Pallet, Call, Storage, Event<T>} = 15,
Anchor: anchor::{Pallet, Call, Storage, Event<T>} = 16,
Attest: attest::{Pallet, Call, Storage} = 17,
Anchor: anchor::{Pallet, Storage, Event<T>} = 16,
Attest: attest::{Pallet, Storage} = 17,
Democracy: pallet_democracy::{Pallet, Call, Storage, Event<T>} = 18,
Council: pallet_collective::<Instance1>::{Pallet, Call, Storage, Origin<T>, Event<T>, Config<T>} = 19,
TechnicalCommittee: pallet_collective::<Instance2>::{Pallet, Call, Storage, Origin<T>, Event<T>, Config<T>} = 20,
Expand All @@ -1812,10 +1812,10 @@ construct_runtime!(
Elections: pallet_elections_phragmen::{Pallet, Call, Storage, Event<T>, Config<T>} = 37,
Tips: pallet_tips::{Pallet, Call, Storage, Event<T>} = 38,
Identity: pallet_identity::{Pallet, Call, Storage, Event<T>} = 39,
Accumulator: accumulator::{Pallet, Call, Storage, Event} = 40,
Accumulator: accumulator::{Pallet, Storage, Event} = 40,
BaseFee: pallet_base_fee::{Pallet, Call, Storage, Config<T>, Event} = 41,
StatusListCredential: status_list_credential::{Pallet, Call, Storage, Event} = 42,
TrustRegistry: trust_registry::{Pallet, Call, Storage, Event} = 43,
StatusListCredential: status_list_credential::{Pallet, Storage, Event} = 42,
TrustRegistry: trust_registry::{Pallet, Storage, Event} = 43,
Agreement: dock_agreement::{Pallet, Call, Event} = 44,
CheqdMigration: dock_cheqd_migration::{Pallet, Call, Event<T>} = 45
}
Expand Down

0 comments on commit 9b2ed64

Please sign in to comment.