Skip to content

Commit acc4dba

Browse files
Merge pull request #142 from OriginTrail/chore/evm-defaul-base-gas-fee-increase
EVM default base gas fee increase
2 parents e64e5d0 + a2cab99 commit acc4dba

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

Cargo.lock

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

runtime/Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "neuroweb-runtime"
3-
version = "147.0.0"
3+
version = "148.0.0"
44
authors = ["TraceLabs"]
55
description = "NeuroWeb Runtime - Cumulus FRAME-based Substrate Runtime"
66
license = "GPL-3.0-only"

runtime/src/lib.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ pub const VERSION: RuntimeVersion = RuntimeVersion {
152152
spec_name: create_runtime_str!("origintrail-parachain"),
153153
impl_name: create_runtime_str!("neuroweb"),
154154
authoring_version: 1,
155-
spec_version: 147,
155+
spec_version: 148,
156156
impl_version: 0,
157157
apis: RUNTIME_API_VERSIONS,
158158
transaction_version: 1,
@@ -685,7 +685,7 @@ impl pallet_evm_accounts::Config for Runtime {
685685
}
686686

687687
parameter_types! {
688-
pub DefaultBaseFeePerGas: U256 = U256::from(16);
688+
pub DefaultBaseFeePerGas: U256 = U256::from(32 * 10_000);
689689
pub DefaultElasticity: Permill = Permill::from_parts(125_000);
690690
}
691691

0 commit comments

Comments
 (0)