mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-22 19:50:36 +00:00
57 lines
1.4 KiB
Go
57 lines
1.4 KiB
Go
package vm
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/holiman/uint256"
|
|
"github.com/ledgerwatch/erigon/common"
|
|
"github.com/ledgerwatch/erigon/core/vm/evmtypes"
|
|
"github.com/ledgerwatch/erigon/params"
|
|
)
|
|
|
|
const CairoNotImplemented = "the method is currently not implemented for cvm: %s"
|
|
|
|
type CVMAdapter struct {
|
|
Cvm *CVM
|
|
}
|
|
|
|
func (c *CVMAdapter) Reset(txCtx evmtypes.TxContext, ibs evmtypes.IntraBlockState) {
|
|
c.Cvm.intraBlockState = ibs
|
|
}
|
|
|
|
func (c *CVMAdapter) Create(caller ContractRef, code []byte, gas uint64, value *uint256.Int) (ret []byte, contractAddr common.Address, leftOverGas uint64, err error) {
|
|
leftOverGas = 0
|
|
|
|
ret, contractAddr, err = c.Cvm.Create(caller, code)
|
|
|
|
return ret, contractAddr, leftOverGas, err
|
|
}
|
|
|
|
func (cvm *CVMAdapter) Call(caller ContractRef, addr common.Address, input []byte, gas uint64, value *uint256.Int, bailout bool) (ret []byte, leftOverGas uint64, err error) {
|
|
return nil, 0, fmt.Errorf(CairoNotImplemented, "Call")
|
|
}
|
|
|
|
func (cvm *CVMAdapter) Config() Config {
|
|
return cvm.Cvm.Config()
|
|
}
|
|
|
|
func (cvm *CVMAdapter) ChainConfig() *params.ChainConfig {
|
|
return params.FermionChainConfig
|
|
}
|
|
|
|
func (cvm *CVMAdapter) ChainRules() *params.Rules {
|
|
return ¶ms.Rules{}
|
|
}
|
|
|
|
func (cvm *CVMAdapter) Context() evmtypes.BlockContext {
|
|
return evmtypes.BlockContext{}
|
|
}
|
|
|
|
func (cvm *CVMAdapter) IntraBlockState() evmtypes.IntraBlockState {
|
|
return cvm.Cvm.IntraBlockState()
|
|
}
|
|
|
|
func (cvm *CVMAdapter) TxContext() evmtypes.TxContext {
|
|
return evmtypes.TxContext{}
|
|
}
|