mirror of https://github.com/hyperledger/besu
[PAN-2989] EIP-1884 - Repricing for trie-size-dependent opcodes (#1795)
* [PAN-2989] EIP-1884 - Repricing for trie-size-dependent opcodes Add the new gas costs and new operation to the EVM. Add contract balance to message frame Signed-off-by: Adrian Sutton <adrian.sutton@consensys.net>pull/2/head
parent
59bf464c99
commit
c4e7dcbe80
@ -0,0 +1,35 @@ |
||||
/* |
||||
* Copyright 2018 ConsenSys AG. |
||||
* |
||||
* Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with |
||||
* the License. You may obtain a copy of the License at |
||||
* |
||||
* http://www.apache.org/licenses/LICENSE-2.0
|
||||
* |
||||
* Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on |
||||
* an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the |
||||
* specific language governing permissions and limitations under the License. |
||||
*/ |
||||
package tech.pegasys.pantheon.ethereum.vm.operations; |
||||
|
||||
import tech.pegasys.pantheon.ethereum.core.Gas; |
||||
import tech.pegasys.pantheon.ethereum.vm.AbstractOperation; |
||||
import tech.pegasys.pantheon.ethereum.vm.GasCalculator; |
||||
import tech.pegasys.pantheon.ethereum.vm.MessageFrame; |
||||
|
||||
public class SelfBalanceOperation extends AbstractOperation { |
||||
|
||||
public SelfBalanceOperation(final GasCalculator gasCalculator) { |
||||
super(0x47, "SELFBALANCE", 0, 1, false, 1, gasCalculator); |
||||
} |
||||
|
||||
@Override |
||||
public Gas cost(final MessageFrame frame) { |
||||
return gasCalculator().getLowTierGasCost(); |
||||
} |
||||
|
||||
@Override |
||||
public void execute(final MessageFrame frame) { |
||||
frame.pushStackItem(frame.getContractBalance().getBytes()); |
||||
} |
||||
} |
Loading…
Reference in new issue