Skip to content
Open
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
28 changes: 14 additions & 14 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 @@ -15,7 +15,7 @@ members = [
"node/rpc",
"node/inspect",
"node/testing",
"pallets/asset",
"pallets/asset-did",
"pallets/chain-space-did",
"pallets/namespace",
"pallets/did",
Expand Down
4 changes: 2 additions & 2 deletions pallets/asset/Cargo.toml → pallets/asset-did/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "pallet-asset"
description = "Manage Asset"
name = "pallet-asset-did"
description = "Manage Asset using DID account"
version = "0.9.3-dev"
authors.workspace = true
edition.workspace = true
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
// --extrinsic=*
// --wasm-execution=compiled
// --heap-pages=4096
// --output=./pallets/asset/src/weights.rs
// --output=./pallets/asset-did/src/weights.rs
// --header=./HEADER-GPL3
// --template=./.maintain/frame-weight-template.hbs

Expand Down
6 changes: 3 additions & 3 deletions scripts/run_benches_for_pallets.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ PALLETS=(
"pallet_network_score"
"pallet_schema"
"pallet_statement"
"pallet_asset"
"pallet_asset-did"
)

echo "[+] Benchmarking ${#PALLETS[@]} pallets."
Expand Down Expand Up @@ -129,8 +129,8 @@ for PALLET in "${PALLETS[@]}"; do
pallet_statement)
FOLDER="statement"
;;
pallet_asset)
FOLDER="asset"
pallet_asset_did)
FOLDER="asset-did"
;;

*)
Expand Down
Loading