Skip to content

Commit

Permalink
remove weight check in runtime (#86)
Browse files Browse the repository at this point in the history
  • Loading branch information
atenjin authored Jun 24, 2021
1 parent 3b7b410 commit 09d2b0d
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 5 deletions.
4 changes: 2 additions & 2 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion bin/europa/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "europa"
version = "0.3.0"
version = "0.3.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"
description = "A sandbox of Substrate runtime execution environment."
Expand Down
2 changes: 1 addition & 1 deletion bin/europa/cli/Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "europa-cli"
version = "0.3.0"
version = "0.3.1"
authors = ["patract labs <https://github.com/patractlabs>"]
edition = "2018"

Expand Down
3 changes: 2 additions & 1 deletion bin/europa/runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -343,7 +343,8 @@ pub type SignedExtra = (
frame_system::CheckGenesis<Runtime>,
frame_system::CheckEra<Runtime>,
frame_system::CheckNonce<Runtime>,
frame_system::CheckWeight<Runtime>,
// remove weight check for contract for it may be very large in debug mode.
// frame_system::CheckWeight<Runtime>,
pallet_transaction_payment::ChargeTransactionPayment<Runtime>,
);
/// Unchecked extrinsic type as expected by this runtime.
Expand Down

0 comments on commit 09d2b0d

Please sign in to comment.