We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8cac694 commit 2ce126aCopy full SHA for 2ce126a
zkevm-circuits/src/evm_circuit/step.rs
@@ -179,6 +179,7 @@ impl ExecutionState {
179
| Self::PrecompileBlake2f
180
| Self::ErrorOutOfGasPrecompile
181
| Self::ErrorPrecompileFailed
182
+ | Self::PrecompileP256Verify
183
)
184
}
185
@@ -193,6 +194,7 @@ impl ExecutionState {
193
194
Self::PrecompileBn256ScalarMul => PrecompileCalls::Bn128Mul,
195
Self::PrecompileBn256Pairing => PrecompileCalls::Bn128Pairing,
196
Self::PrecompileBlake2f => PrecompileCalls::Blake2F,
197
+ Self::PrecompileP256Verify => PrecompileCalls::P256Verify,
198
_ => return GasCost(0),
199
})
200
.base_gas_cost()
0 commit comments