Skip to content
This repository has been archived by the owner on Feb 21, 2024. It is now read-only.

Commit

Permalink
chore: updated substrate dependencies to v0.9.42
Browse files Browse the repository at this point in the history
  • Loading branch information
godenzim committed Apr 13, 2023
1 parent b3d2351 commit 8b1ce7e
Show file tree
Hide file tree
Showing 45 changed files with 388 additions and 388 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@ members = [
"pallets/acurast/common",
"pallets/marketplace/reputation",
"p256-crypto",
]
]
12 changes: 6 additions & 6 deletions p256-crypto/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,12 +17,12 @@ hex = { version = "0.4", default-features = false }
p256 = { git = "https://github.com/Acurast/elliptic-curves", default-features = false, features = ["ecdsa", "sha256"] }

# Substrate
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-runtime = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-runtime-interface = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-application-crypto = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }

[dev-dependencies]
hex-literal = "0.3"
Expand Down
38 changes: 19 additions & 19 deletions pallets/acurast/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -17,33 +17,33 @@ scale-info = { version = "2.3.0", features = ["derive"], default-features = fals
acurast-common = { path = "./common", default-features = false, features = ["attestation"] }

# Substrate
frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.36" }
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.41" }
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
frame-system = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-io = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-core = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }

# benchmarks
hex-literal = { version = "0.3", optional = true }
parachain-info = { git = "https://github.com/paritytech/cumulus", default-features = false, optional = true, branch = "polkadot-v0.9.36" }
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.36" }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.36" }
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.36" }
parachains-common = { git = "https://github.com/paritytech/cumulus", default-features = false, optional = true, branch = "polkadot-v0.9.36" }
parachain-info = { git = "https://github.com/paritytech/cumulus", default-features = false, optional = true, branch = "polkadot-v0.9.41" }
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.41" }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.41" }
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.41" }
parachains-common = { git = "https://github.com/paritytech/cumulus", default-features = false, optional = true, branch = "polkadot-v0.9.41" }

[dev-dependencies]
base64 = { version = "0.13.0", default-features = false, features = ["alloc"] }
hex-literal = "0.3"

sp-version = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
pallet-assets = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
parachains-common = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.36" }
sp-version = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }
pallet-timestamp = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }
pallet-assets = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }
parachain-info = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41" }
parachains-common = { git = "https://github.com/paritytech/cumulus", branch = "polkadot-v0.9.41" }

[features]
default = ["std"]
Expand Down
4 changes: 2 additions & 2 deletions pallets/acurast/common/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ edition = "2021"
codec = { package = "parity-scale-codec", version = "3.0.0", features = ["derive"], default-features = false }
scale-info = { version = "2.2.0", features = ["derive"], default-features = false }
# Substrate
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
frame-support = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
# Attestation
asn1 = { version = "0.11.0", default-features = false, features = ["derive"], optional = true }
p256 = { git = "https://github.com/Acurast/elliptic-curves", default-features = false, features = ["ecdsa", "sha256"], optional = true }
Expand Down
1 change: 0 additions & 1 deletion pallets/acurast/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,6 @@ pub mod pallet {
pub(crate) const STORAGE_VERSION: StorageVersion = StorageVersion::new(2);

#[pallet::pallet]
#[pallet::generate_store(pub (super) trait Store)]
#[pallet::without_storage_info]
#[pallet::storage_version(STORAGE_VERSION)]
pub struct Pallet<T>(_);
Expand Down
8 changes: 4 additions & 4 deletions pallets/acurast/src/mock.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
use acurast_common::{JobModules, Schedule};
use frame_support::{
dispatch::Weight, pallet_prelude::GenesisBuild, parameter_types, traits::AsEnsureOriginWithArg,
pallet_prelude::GenesisBuild, parameter_types, traits::AsEnsureOriginWithArg,
traits::Everything, PalletId,
};
use hex_literal::hex;
Expand Down Expand Up @@ -87,7 +87,6 @@ parameter_types! {
pub const BlockHashCount: BlockNumber = 2400;
}
parameter_types! {
pub BlockWeights: frame_system::limits::BlockWeights = frame_system::limits::BlockWeights::simple_max(Weight::from_ref_time(1024));
pub const MinimumPeriod: u64 = 6000;
pub AllowedRevocationListUpdate: Vec<AccountId> = vec![alice_account_id(), <Test as crate::Config>::PalletId::get().into_account_truncating()];
pub const ExistentialDeposit: Balance = EXISTENTIAL_DEPOSIT;
Expand Down Expand Up @@ -151,8 +150,8 @@ impl pallet_balances::Config for Test {
impl pallet_assets::Config for Test {
type RuntimeEvent = RuntimeEvent;
type Balance = Balance;
type AssetId = parachains_common::AssetId;
type AssetIdParameter = codec::Compact<parachains_common::AssetId>;
type AssetId = parachains_common::AssetIdForTrustBackedAssets;
type AssetIdParameter = codec::Compact<parachains_common::AssetIdForTrustBackedAssets>;
type Currency = Balances;
type CreateOrigin = AsEnsureOriginWithArg<frame_system::EnsureSigned<AccountId>>;
type ForceOrigin = frame_system::EnsureRoot<Self::AccountId>;
Expand All @@ -166,6 +165,7 @@ impl pallet_assets::Config for Test {
type Extra = ();
type WeightInfo = ();
type RemoveItemsLimit = ();
type CallbackHandle = ();
#[cfg(feature = "runtime-benchmarks")]
type BenchmarkHelper = ();
}
Expand Down
10 changes: 5 additions & 5 deletions pallets/acurast/src/weights.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,32 +34,32 @@ impl<T: frame_system::Config> crate::WeightInfo for WeightInfo<T> {
// Storage: System Account (r:1 w:1)
// Storage: Acurast StoredJobRegistration (r:0 w:1)
fn register() -> Weight {
Weight::from_ref_time(45_000_000 as u64)
Weight::from_parts(45_000_000, 0)
.saturating_add(T::DbWeight::get().reads(4 as u64))
.saturating_add(T::DbWeight::get().writes(5 as u64))
}
// Storage: Acurast StoredJobRegistration (r:0 w:1)
fn deregister() -> Weight {
Weight::from_ref_time(13_000_000 as u64)
Weight::from_parts(13_000_000, 0)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Acurast StoredJobRegistration (r:1 w:1)
fn update_allowed_sources() -> Weight {
Weight::from_ref_time(22_000_000 as u64)
Weight::from_parts(22_000_000, 0)
.saturating_add(T::DbWeight::get().reads(1 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Timestamp Now (r:1 w:0)
// Storage: Acurast StoredRevokedCertificate (r:4 w:0)
// Storage: Acurast StoredAttestation (r:0 w:1)
fn submit_attestation() -> Weight {
Weight::from_ref_time(10_046_000_000 as u64)
Weight::from_parts(10_046_000_000, 0)
.saturating_add(T::DbWeight::get().reads(5 as u64))
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
// Storage: Acurast StoredRevokedCertificate (r:0 w:1)
fn update_certificate_revocation_list() -> Weight {
Weight::from_ref_time(12_000_000 as u64)
Weight::from_parts(12_000_000, 0)
.saturating_add(T::DbWeight::get().writes(1 as u64))
}
}
32 changes: 16 additions & 16 deletions pallets/assets-manager/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,33 +19,33 @@ codec = { package = "parity-scale-codec", version = "3.0.0", default-features =
] }

# Benchmarks
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", optional = true, default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", optional = true, default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", optional = true, default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.36" }
frame-benchmarking = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", optional = true, default-features = false }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", optional = true, default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", optional = true, default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", default-features = false, optional = true, branch = "polkadot-v0.9.41" }

# Substrate
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
frame-support = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", default-features = false }
frame-system = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", default-features = false }
scale-info = { version = "2.2.0", default-features = false, features = [
"derive",
] }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.36" }
sp-arithmetic = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", default-features = false }
sp-runtime = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", default-features = false }
sp-std = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }
pallet-assets = { git = "https://github.com/paritytech/substrate", default-features = false, branch = "polkadot-v0.9.41" }

# Polkadot
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.36" }
xcm = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.41" }
xcm-executor = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.41" }
xcm-builder = { git = "https://github.com/paritytech/polkadot", default-features = false, branch = "release-v0.9.41" }

acurast-common = { path = "../acurast/common", default-features = false }

[dev-dependencies]
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.36" }
sp-io = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", default-features = false }
sp-core = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41", default-features = false }
pallet-balances = { git = "https://github.com/paritytech/substrate", branch = "polkadot-v0.9.41" }

[features]
default = ["std"]
Expand Down
16 changes: 8 additions & 8 deletions pallets/assets-manager/src/benchmarking.rs
Original file line number Diff line number Diff line change
Expand Up @@ -23,39 +23,39 @@ benchmarks! {
let admin = <T as crate::Config>::BenchmarkHelper::manager_account();
whitelist_account!(caller);
let id = <T as pallet_assets::Config>::BenchmarkHelper::create_asset_id_parameter(0);
}: _(RawOrigin::Signed(caller), id, xcm::latest::AssetId::Abstract(vec![1]), admin.into(), 1u128)
}: _(RawOrigin::Signed(caller), id, xcm::latest::AssetId::Abstract([1; 32]), admin.into(), 1u128)

force_create {
let caller = <T as crate::Config>::BenchmarkHelper::manager_account();
let admin = <T as crate::Config>::BenchmarkHelper::manager_account();
whitelist_account!(caller);
let id = <T as pallet_assets::Config>::BenchmarkHelper::create_asset_id_parameter(0);
}: _(RawOrigin::Signed(caller), id, xcm::latest::AssetId::Abstract(vec![1]), admin.into(), true, 1u128)
}: _(RawOrigin::Signed(caller), id, xcm::latest::AssetId::Abstract([1; 32]), admin.into(), true, 1u128)

set_metadata {
let caller = <T as crate::Config>::BenchmarkHelper::manager_account();
whitelist_account!(caller);
Pallet::<T>::create(RawOrigin::Signed(caller.clone()).into(), <T as pallet_assets::Config>::BenchmarkHelper::create_asset_id_parameter(0), xcm::latest::AssetId::Abstract(vec![1]), caller.clone().into(), 1u128)?;
}: _(RawOrigin::Signed(caller), xcm::latest::AssetId::Abstract(vec![1]), vec![1u8].try_into().unwrap(), vec![1u8].try_into().unwrap(), 0)
Pallet::<T>::create(RawOrigin::Signed(caller.clone()).into(), <T as pallet_assets::Config>::BenchmarkHelper::create_asset_id_parameter(0), xcm::latest::AssetId::Abstract([1; 32]), caller.clone().into(), 1u128)?;
}: _(RawOrigin::Signed(caller), xcm::latest::AssetId::Abstract([1; 32]), vec![1u8].try_into().unwrap(), vec![1u8].try_into().unwrap(), 0)

transfer {
let caller = <T as crate::Config>::BenchmarkHelper::manager_account();
let destination = <T as crate::Config>::BenchmarkHelper::manager_account();
whitelist_account!(caller);
let id = <T as pallet_assets::Config>::BenchmarkHelper::create_asset_id_parameter(0);
Pallet::<T>::create(RawOrigin::Signed(caller.clone()).into(), id, xcm::latest::AssetId::Abstract(vec![1]), caller.clone().into(), 1u128)?;
Pallet::<T>::create(RawOrigin::Signed(caller.clone()).into(), id, xcm::latest::AssetId::Abstract([1; 32]), caller.clone().into(), 1u128)?;
pallet_assets::Pallet::<T>::mint(RawOrigin::Signed(caller.clone()).into(), id, caller.clone().into(), 1)?;
}: _(RawOrigin::Signed(caller), xcm::latest::AssetId::Abstract(vec![1]), destination.into(), 1)
}: _(RawOrigin::Signed(caller), xcm::latest::AssetId::Abstract([1; 32]), destination.into(), 1)

force_transfer {
let caller = <T as crate::Config>::BenchmarkHelper::manager_account();
let source = <T as crate::Config>::BenchmarkHelper::manager_account();
let destination = <T as crate::Config>::BenchmarkHelper::manager_account();
whitelist_account!(caller);
let id = <T as pallet_assets::Config>::BenchmarkHelper::create_asset_id_parameter(0);
Pallet::<T>::create(RawOrigin::Signed(caller.clone()).into(), id, xcm::latest::AssetId::Abstract(vec![1]), caller.clone().into(), 1u128)?;
Pallet::<T>::create(RawOrigin::Signed(caller.clone()).into(), id, xcm::latest::AssetId::Abstract([1; 32]), caller.clone().into(), 1u128)?;
pallet_assets::Pallet::<T>::mint(RawOrigin::Signed(caller.clone()).into(), id, caller.clone().into(), 1)?;
}: _(RawOrigin::Signed(caller), xcm::latest::AssetId::Abstract(vec![1]), source.into(), destination.into(), 1)
}: _(RawOrigin::Signed(caller), xcm::latest::AssetId::Abstract([1; 32]), source.into(), destination.into(), 1)

impl_benchmark_test_suite!(Pallet, mock::ExtBuilder::default().build(), mock::Test);
}
1 change: 0 additions & 1 deletion pallets/assets-manager/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,6 @@ pub mod pallet {
use xcm_executor::traits::Convert;

#[pallet::pallet]
#[pallet::generate_store(pub(super) trait Store)]
#[pallet::without_storage_info]
pub struct Pallet<T, I = ()>(PhantomData<(T, I)>);

Expand Down
1 change: 1 addition & 0 deletions pallets/assets-manager/src/mock.rs
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ impl pallet_assets::Config for Test {
type Extra = ();
type WeightInfo = ();
type RemoveItemsLimit = ();
type CallbackHandle = ();
#[cfg(feature = "runtime-benchmarks")]
type BenchmarkHelper = TestBenchmarkHelper;
}
Expand Down
Loading

0 comments on commit 8b1ce7e

Please sign in to comment.