When querying these constants by Polkadot js API, each returns 100, which is the value of DefaultGlobalDailyNftLimit. Turns out that there is a bug in correctly exposing these three constants.
see
|
const DefaultGlobalWeeklyNftLimit: LimitPerPeriod<T::BlockNumber> = |
|
T::DefaultGlobalDailyNftLimit::get(); |
|
|
|
/// Exports const - default channel daily NFT limit. |
|
const DefaultChannelDailyNftLimit: LimitPerPeriod<T::BlockNumber> = |
|
T::DefaultGlobalDailyNftLimit::get(); |
|
|
|
/// Exports const - default channel weekly NFT limit. |
|
const DefaultChannelWeeklyNftLimit: LimitPerPeriod<T::BlockNumber> = |
|
T::DefaultGlobalDailyNftLimit::get(); |
┆Issue is synchronized with this Asana task by Unito
When querying these constants by Polkadot js API, each returns
100, which is the value ofDefaultGlobalDailyNftLimit. Turns out that there is a bug in correctly exposing these three constants.see
joystream/runtime-modules/content/src/lib.rs
Lines 335 to 344 in 4c8ed86
┆Issue is synchronized with this Asana task by Unito