eth: separate common and full node-specific API and backend service

This commit is contained in:
zsfelfoldi
2016-06-16 17:36:38 +02:00
parent a38be3eb48
commit 3a97280ae8
22 changed files with 2296 additions and 1805 deletions
+2
View File
@@ -73,6 +73,8 @@ type Environment interface {
DelegateCall(me ContractRef, addr common.Address, data []byte, gas, price *big.Int) ([]byte, error)
// Create a new contract
Create(me ContractRef, data []byte, gas, price, value *big.Int) ([]byte, common.Address, error)
StructLogs() []StructLog
}
// Vm is the basic interface for an implementation of the EVM.