Skip to content

Commit

Permalink
Finish runner part
Browse files Browse the repository at this point in the history
  • Loading branch information
boundless-forest committed Aug 2, 2024
1 parent a01b802 commit 94c5e3f
Show file tree
Hide file tree
Showing 4 changed files with 58 additions and 264 deletions.
4 changes: 2 additions & 2 deletions frame/ethereum/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -377,8 +377,8 @@ impl<T: Config> Pallet<T> {
transaction_data.gas_limit.unique_saturated_into(),
true,
);
let storage_proof_size = cumulus_primitives_storage_weight_reclaim::get_proof_size();
TransactionPov::new(weight_limit, extrinsics_len, storage_proof_size)
let proof_size_pre_execution = cumulus_primitives_storage_weight_reclaim::get_proof_size();
TransactionPov::new(weight_limit, extrinsics_len, proof_size_pre_execution)
}

fn recover_signer(transaction: &Transaction) -> Option<H160> {
Expand Down
Loading

0 comments on commit 94c5e3f

Please sign in to comment.