Skip to content
This repository was archived by the owner on Aug 15, 2025. It is now read-only.
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
ce1c9a4
parachain-system: Do not take `self` for `last_relay_block_number` (#…
bkchr Dec 15, 2023
ddd5434
fix zombienet test (#2719)
pepoviola Dec 15, 2023
ffb2125
[NPoS] Remove better solution threshold for unsigned submissions (#2694)
Ank4n Dec 15, 2023
e5b2ada
`chain-spec-builder`: Improve output path example (#2693)
liamaharon Dec 16, 2023
64d52f2
Publicly expose inaccessible `pallet_uniques` state (#2727)
Szegoo Dec 16, 2023
a250652
Bump async-trait from 0.1.73 to 0.1.74 (#2730)
dependabot[bot] Dec 18, 2023
d941784
Relaxed clippy fixes/nits (#2661)
bkontur Dec 18, 2023
792e374
Bridges subtree update (#2736)
bkontur Dec 18, 2023
ebe2aad
BEEFY: expect_validator_set() small fix (#2737)
serban300 Dec 18, 2023
f93f461
[ci] Fix node-bench-regression-guard job (#2732)
alvicsam Dec 18, 2023
526c81b
subsystem benchmarks: add cpu profiling (#2734)
AndreiEres Dec 19, 2023
657fc2a
Bump dyn-clone from 1.0.13 to 1.0.16 (#2748)
dependabot[bot] Dec 19, 2023
81156d0
Bump actions/setup-node from 4.0.0 to 4.0.1 (#2746)
dependabot[bot] Dec 19, 2023
0b74812
`UnionOf` types for merged `fungible` and `fungibles` implementations…
muharem Dec 19, 2023
166ae5a
[NFTs] Fix consumers issue (#2653)
jsidorenko Dec 19, 2023
2e70dd3
Rococo/Westend Coretime Runtime
joepetrowski Dec 19, 2023
d192401
Ref docs: runtime vs contracts (#2609)
juangirini Dec 19, 2023
7c79741
SDK docs ref cli (#2741)
juangirini Dec 19, 2023
84d6342
pallet-uniques/nfts: Small optimizations (#2754)
bkchr Dec 19, 2023
5ce0451
pallet-asset-conversion: Swap Credit (#1677)
muharem Dec 19, 2023
8efaabd
Add srtool GHA (#2755)
EgorPopelyaev Dec 19, 2023
421af26
Update schnorrkel to 0.11.4 (#2524)
andresilva Dec 19, 2023
c9f9b4b
Fix bridges scripts to test Rococo <> Westend bridge locally (#2752)
svyatonik Dec 20, 2023
d32f66f
Bump chrono from 0.4.27 to 0.4.31 (#2761)
dependabot[bot] Dec 20, 2023
4f832ea
pallet-asset-conversion: Decoupling Native Currency Dependancy (#2031)
muharem Dec 20, 2023
b51904d
use a single source for simple-mermaid dependency (#2760)
andresilva Dec 20, 2023
280aa0b
Add Authorize Upgrade Pattern to Frame System (#2682)
joepetrowski Dec 20, 2023
d68868f
Fix clippy lints behind feature gates and add new CI step all feature…
seadanda Dec 20, 2023
d84e135
Fix Coretime Master (#2765)
joepetrowski Dec 20, 2023
3089458
Merge branch 'master' into snowbridge
Dec 21, 2023
c8f2fad
update from master
Dec 21, 2023
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
Prev Previous commit
Next Next commit
Publicly expose inaccessible pallet_uniques state (paritytech#2727)
A small PR to publicly expose the `pallet_uniques` state that is not
accessible through the nonfungibles implementation.

Currently, this state is unreachable from chain extensions.
  • Loading branch information
Szegoo authored Dec 16, 2023
commit 64d52f225e127575b51ab7fdf677783f5cd497f4
8 changes: 4 additions & 4 deletions substrate/frame/uniques/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ pub mod pallet {
#[pallet::storage]
#[pallet::storage_prefix = "Class"]
/// Details of a collection.
pub(super) type Collection<T: Config<I>, I: 'static = ()> = StorageMap<
pub type Collection<T: Config<I>, I: 'static = ()> = StorageMap<
_,
Blake2_128Concat,
T::CollectionId,
Expand All @@ -174,7 +174,7 @@ pub mod pallet {

#[pallet::storage]
/// The collection, if any, of which an account is willing to take ownership.
pub(super) type OwnershipAcceptance<T: Config<I>, I: 'static = ()> =
pub type OwnershipAcceptance<T: Config<I>, I: 'static = ()> =
StorageMap<_, Blake2_128Concat, T::AccountId, T::CollectionId>;

#[pallet::storage]
Expand Down Expand Up @@ -208,7 +208,7 @@ pub mod pallet {
#[pallet::storage]
#[pallet::storage_prefix = "Asset"]
/// The items in existence and their ownership details.
pub(super) type Item<T: Config<I>, I: 'static = ()> = StorageDoubleMap<
pub type Item<T: Config<I>, I: 'static = ()> = StorageDoubleMap<
_,
Blake2_128Concat,
T::CollectionId,
Expand Down Expand Up @@ -257,7 +257,7 @@ pub mod pallet {

#[pallet::storage]
/// Price of an asset instance.
pub(super) type ItemPriceOf<T: Config<I>, I: 'static = ()> = StorageDoubleMap<
pub type ItemPriceOf<T: Config<I>, I: 'static = ()> = StorageDoubleMap<
_,
Blake2_128Concat,
T::CollectionId,
Expand Down