Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.
Merged
Changes from 1 commit
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
Next Next commit
Companion for #13158
  • Loading branch information
Jegor Sidorenko committed Jan 21, 2023
commit 88e96250f6185500cb20d9a5c124d5c198f9c35d
Original file line number Diff line number Diff line change
Expand Up @@ -423,4 +423,10 @@ impl<T: frame_system::Config> pallet_nfts::WeightInfo for WeightInfo<T> {
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(11))
}
fn mint_pre_signed() -> Weight {
// Minimum execution time: 87_000 nanoseconds.
Weight::from_ref_time(90_000_000)
.saturating_add(T::DbWeight::get().reads(8))
.saturating_add(T::DbWeight::get().writes(11))
}
}