Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion runtime/krest/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -679,7 +679,7 @@ parameter_types! {
/// (15_000_000 / 40kb)
/// However, let us setup the value as 1 for now because we also has the did/storage bridge
Copy link

Copilot AI Nov 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment is now outdated and contradicts the code. The value is no longer set to 1, so the comment should be updated to reflect that the value has been set to 366 or the comment should be removed.

Copilot uses AI. Check for mistakes.
/// [TODO] Need to check
pub GasLimitStorageGrowthRatio: u64 = 1;
pub GasLimitStorageGrowthRatio: u64 = 366;
}

impl pallet_evm::Config for Runtime {
Expand Down
2 changes: 1 addition & 1 deletion runtime/peaq-dev/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -684,7 +684,7 @@ parameter_types! {
/// (15_000_000 / 40kb)
/// However, let us setup the value as 1 for now because we also has the did/storage bridge
Copy link

Copilot AI Nov 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment is now outdated and contradicts the code. The value is no longer set to 1, so the comment should be updated to reflect that the value has been set to 366 or the comment should be removed.

Copilot uses AI. Check for mistakes.
/// [TODO] Need to check
pub GasLimitStorageGrowthRatio: u64 = 1;
pub GasLimitStorageGrowthRatio: u64 = 366;
}

impl pallet_evm::Config for Runtime {
Expand Down
2 changes: 1 addition & 1 deletion runtime/peaq/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -706,7 +706,7 @@ parameter_types! {
/// (15_000_000 / 40kb)
/// However, let us setup the value as 1 for now because we also has the did/storage bridge
Copy link

Copilot AI Nov 5, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The comment is now outdated and contradicts the code. The value is no longer set to 1, so the comment should be updated to reflect that the value has been set to 366 or the comment should be removed.

Copilot uses AI. Check for mistakes.
/// [TODO] Need to check
pub GasLimitStorageGrowthRatio: u64 = 1;
pub GasLimitStorageGrowthRatio: u64 = 366;
}

pub struct TransactionPaymentAsGasPrice;
Expand Down
Loading