Skip to content

Commit

Permalink
Add missing Helper trait to the pallet_nfts
Browse files Browse the repository at this point in the history
  • Loading branch information
khssnv committed Oct 16, 2023
1 parent 4a249e6 commit 08bce1d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions runtime/devnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,8 @@ impl pallet_nfts::Config for Runtime {
type OffchainSignature = Signature;
type OffchainPublic = <Signature as Verify>::Signer;
type WeightInfo = ();
#[cfg(feature = "runtime-benchmarks")]
type Helper = ();
}

/// A reason for placing a hold on funds.
Expand Down
2 changes: 2 additions & 0 deletions runtime/mainnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -680,6 +680,8 @@ impl pallet_nfts::Config for Runtime {
type OffchainSignature = Signature;
type OffchainPublic = <Signature as Verify>::Signer;
type WeightInfo = ();
#[cfg(feature = "runtime-benchmarks")]
type Helper = ();
}

/// A reason for placing a hold on funds.
Expand Down

0 comments on commit 08bce1d

Please sign in to comment.