aboutsummaryrefslogtreecommitdiffstats
path: root/vm/execution.go
diff options
context:
space:
mode:
Diffstat (limited to 'vm/execution.go')
-rw-r--r--vm/execution.go6
1 files changed, 3 insertions, 3 deletions
diff --git a/vm/execution.go b/vm/execution.go
index 8da0469de..401157808 100644
--- a/vm/execution.go
+++ b/vm/execution.go
@@ -4,15 +4,15 @@ import (
"fmt"
"math/big"
- "github.com/ethereum/go-ethereum/ethstate"
"github.com/ethereum/go-ethereum/ethutil"
+ "github.com/ethereum/go-ethereum/state"
)
type Execution struct {
vm VirtualMachine
address, input []byte
Gas, price, value *big.Int
- object *ethstate.StateObject
+ object *state.StateObject
SkipTransfer bool
}
@@ -41,7 +41,7 @@ func (self *Execution) exec(code, caddr []byte, caller ClosureRef) (ret []byte,
}
}()
- msg := env.State().Manifest().AddMessage(&ethstate.Message{
+ msg := env.State().Manifest().AddMessage(&state.Message{
To: self.address, From: caller.Address(),
Input: self.input,
Origin: env.Origin(),