Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix region nonfungible implementation #5067

Merged
merged 14 commits into from
Jul 26, 2024
Merged
Show file tree
Hide file tree
Changes from 4 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
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ use frame_system::{
limits::{BlockLength, BlockWeights},
EnsureRoot,
};
use pallet_broker::CoreMask;
use pallet_xcm::{EnsureXcm, IsVoiceOfBody};
use parachains_common::{
impls::DealWithFees,
Expand Down Expand Up @@ -832,7 +833,7 @@ impl_runtime_apis! {
let begin = 0;
let end = 42;

let region_id = pallet_broker::Pallet::<Runtime>::issue(core, begin, end, None, None);
let region_id = pallet_broker::Pallet::<Runtime>::issue(core, begin, CoreMask::complete(), end, None, None);
Szegoo marked this conversation as resolved.
Show resolved Hide resolved
Some((
Asset {
fun: NonFungible(Index(region_id.into())),
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ use frame_system::{
limits::{BlockLength, BlockWeights},
EnsureRoot,
};
use pallet_broker::CoreMask;
use pallet_xcm::{EnsureXcm, IsVoiceOfBody};
use parachains_common::{
impls::DealWithFees,
Expand Down Expand Up @@ -823,7 +824,7 @@ impl_runtime_apis! {
let begin = 0;
let end = 42;

let region_id = pallet_broker::Pallet::<Runtime>::issue(core, begin, end, None, None);
let region_id = pallet_broker::Pallet::<Runtime>::issue(core, begin, CoreMask::complete(), end, None, None);
Szegoo marked this conversation as resolved.
Show resolved Hide resolved
Some((
Asset {
fun: NonFungible(Index(region_id.into())),
Expand Down
19 changes: 19 additions & 0 deletions prdoc/pr_5067.prdoc
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
# Schema: Polkadot SDK PRDoc Schema (prdoc) v1.0.0
# See doc at https://raw.githubusercontent.com/paritytech/polkadot-sdk/master/prdoc/schema_user.json

title: Fix region nonfungible implementation

doc:
- audience: Runtime User
description: |
PR fixes the issue with the current implementation where minting causes
the region coremask to be set to `Coremask::complete` regardless of the
actual coremask of the region.

crates:
- name: pallet-broker
bump: major
- name: coretime-rococo-runtime
bump: major
- name: coretime-westend-runtime
bump: major
Szegoo marked this conversation as resolved.
Show resolved Hide resolved
10 changes: 8 additions & 2 deletions substrate/frame/broker/src/dispatchable_impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -128,8 +128,14 @@ impl<T: Config> Pallet<T> {
let core = Self::purchase_core(&who, price, &mut sale)?;

SaleInfo::<T>::put(&sale);
let id =
Self::issue(core, sale.region_begin, sale.region_end, Some(who.clone()), Some(price));
let id = Self::issue(
core,
sale.region_begin,
CoreMask::complete(),
sale.region_end,
Some(who.clone()),
Some(price),
);
let duration = sale.region_end.saturating_sub(sale.region_begin);
Self::deposit_event(Event::Purchased { who, region_id: id, price, duration });
Ok(id)
Expand Down
9 changes: 8 additions & 1 deletion substrate/frame/broker/src/nonfungible_impl.rs
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,14 @@ impl<T: Config> Mutate<T::AccountId> for Pallet<T> {
// 'Minting' can only occur if the asset has previously been burned (i.e. moved to the
// holding register)
ensure!(record.owner.is_none(), Error::<T>::NotAllowed);
Self::issue(region_id.core, region_id.begin, record.end, Some(who.clone()), record.paid);
Self::issue(
region_id.core,
region_id.begin,
region_id.mask,
record.end,
Some(who.clone()),
record.paid,
);

Ok(())
}
Expand Down
43 changes: 43 additions & 0 deletions substrate/frame/broker/src/tests.rs
Original file line number Diff line number Diff line change
Expand Up @@ -240,6 +240,49 @@ fn mutate_operations_work() {
});
}

#[test]
fn mutate_operations_work_with_partitioned_region() {
TestExt::new().endow(1, 1000).execute_with(|| {
assert_ok!(Broker::do_start_sales(100, 1));
advance_to(2);
let region = Broker::do_purchase(1, u64::max_value()).unwrap();
let (region1, _region2) = Broker::do_partition(region, None, 2).unwrap();
let record_1 = Regions::<Test>::get(region1).unwrap();

// 'withdraw' the region from user 1:
assert_ok!(<Broker as Mutate<_>>::burn(&region1.into(), Some(&1)));
assert_eq!(Regions::<Test>::get(region1).unwrap().owner, None);

// `mint_into` works after burning:
assert_ok!(<Broker as Mutate<_>>::mint_into(&region1.into(), &1));

// Ensure the region minted is the same as the one we burned previously:
assert_eq!(Regions::<Test>::get(region1).unwrap(), record_1);
});
}

#[test]
fn mutate_operations_work_with_interlaced_region() {
TestExt::new().endow(1, 1000).execute_with(|| {
assert_ok!(Broker::do_start_sales(100, 1));
advance_to(2);
let region = Broker::do_purchase(1, u64::max_value()).unwrap();
let (region1, _region2) =
Broker::do_interlace(region, None, CoreMask::from_chunk(0, 40)).unwrap();
let record_1 = Regions::<Test>::get(region1).unwrap();

// 'withdraw' the region from user 1:
assert_ok!(<Broker as Mutate<_>>::burn(&region1.into(), Some(&1)));
assert_eq!(Regions::<Test>::get(region1).unwrap().owner, None);

// `mint_into` works after burning:
assert_ok!(<Broker as Mutate<_>>::mint_into(&region1.into(), &1));

// Ensure the region minted is the same as the one we burned previously:
assert_eq!(Regions::<Test>::get(region1).unwrap(), record_1);
});
}

#[test]
fn permanent_is_not_reassignable() {
TestExt::new().endow(1, 1000).execute_with(|| {
Expand Down
3 changes: 2 additions & 1 deletion substrate/frame/broker/src/utility_impls.rs
Original file line number Diff line number Diff line change
Expand Up @@ -94,11 +94,12 @@ impl<T: Config> Pallet<T> {
pub fn issue(
seadanda marked this conversation as resolved.
Show resolved Hide resolved
core: CoreIndex,
begin: Timeslice,
mask: CoreMask,
end: Timeslice,
owner: Option<T::AccountId>,
paid: Option<BalanceOf<T>>,
) -> RegionId {
let id = RegionId { begin, core, mask: CoreMask::complete() };
let id = RegionId { begin, core, mask };
let record = RegionRecord { end, owner, paid };
Regions::<T>::insert(&id, &record);
id
Expand Down
Loading