Skip to content

Commit

Permalink
fix: add missing signed extra
Browse files Browse the repository at this point in the history
  • Loading branch information
chungquantin committed Aug 14, 2024
1 parent e0ff905 commit a5630f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions runtime/devnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ pub type SignedExtra = (
frame_system::CheckNonce<Runtime>,
frame_system::CheckWeight<Runtime>,
pallet_transaction_payment::ChargeTransactionPayment<Runtime>,
cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<Runtime>,
);

/// Unchecked extrinsic type as expected by this runtime.
Expand Down
1 change: 1 addition & 0 deletions runtime/testnet/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,7 @@ pub type SignedExtra = (
frame_system::CheckNonce<Runtime>,
frame_system::CheckWeight<Runtime>,
pallet_transaction_payment::ChargeTransactionPayment<Runtime>,
cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<Runtime>,

Check failure on line 104 in runtime/testnet/src/lib.rs

View workflow job for this annotation

GitHub Actions / clippy

failed to resolve: use of undeclared crate or module `cumulus_primitives_storage_weight_reclaim`

error[E0433]: failed to resolve: use of undeclared crate or module `cumulus_primitives_storage_weight_reclaim` --> runtime/testnet/src/lib.rs:104:2 | 104 | cumulus_primitives_storage_weight_reclaim::StorageWeightReclaim<Runtime>, | ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ use of undeclared crate or module `cumulus_primitives_storage_weight_reclaim`
);

/// Unchecked extrinsic type as expected by this runtime.
Expand Down

0 comments on commit a5630f0

Please sign in to comment.