Skip to content

Commit 5cc001c

Browse files
committed
fix
1 parent 673e4df commit 5cc001c

File tree

1 file changed

+0
-10
lines changed

1 file changed

+0
-10
lines changed

eth/vm/forks/petersburg/computation.py

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,6 @@
88
from eth.vm.forks.byzantium.computation import (
99
ByzantiumComputation
1010
)
11-
from eth.vm.gas_meter import (
12-
allow_negative_refund_strategy,
13-
GasMeter,
14-
)
1511

1612
from .opcodes import PETERSBURG_OPCODES
1713

@@ -31,9 +27,3 @@ class PetersburgComputation(ByzantiumComputation):
3127
# Override
3228
opcodes = PETERSBURG_OPCODES
3329
_precompiles = PETERSBURG_PRECOMPILES
34-
35-
def get_gas_meter(self) -> GasMeter:
36-
return GasMeter(
37-
self.msg.gas,
38-
allow_negative_refund_strategy
39-
)

0 commit comments

Comments
 (0)