Skip to content

Commit

Permalink
EVM: disabled by default in Rules
Browse files Browse the repository at this point in the history
  • Loading branch information
valdok committed Aug 20, 2024
1 parent 78e356e commit 3d13b8a
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion core/block_crypt.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -2211,7 +2211,9 @@ namespace beam

// 1 eth == 10^18 wei
// 1 beam == 10^10 groth
Evm.Groth2Wei = 100000;
// EVM is currently disabled by default
Evm.Groth2Wei = 0;
//Evm.Groth2Wei = 100000;
Evm.BaseGasPrice = 100ull * 1'000'000'000ull;
Evm.MinTxGasUnits = 21000;

Expand Down Expand Up @@ -2500,6 +2502,8 @@ namespace beam
<< "fork6"
<< pForks[6].m_Height
<< Evm.Groth2Wei
<< Evm.BaseGasPrice
<< Evm.MinTxGasUnits
>> pForks[6].m_Hash;
}

Expand Down

0 comments on commit 3d13b8a

Please sign in to comment.