mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-25 21:17:16 +00:00
393753af42
* fix starknet tx hashing to work with txpool v2 * fix test * fix starknet txs mining * lint fixup * fixup * fix 2
56 lines
1.3 KiB
Go
56 lines
1.3 KiB
Go
package vm
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/holiman/uint256"
|
|
"github.com/ledgerwatch/erigon/common"
|
|
"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 TxContext, ibs 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 params.Rules{}
|
|
}
|
|
|
|
func (cvm *CVMAdapter) Context() BlockContext {
|
|
return BlockContext{}
|
|
}
|
|
|
|
func (cvm *CVMAdapter) IntraBlockState() IntraBlockState {
|
|
return cvm.Cvm.IntraBlockState()
|
|
}
|
|
|
|
func (cvm *CVMAdapter) TxContext() TxContext {
|
|
return TxContext{}
|
|
}
|