aboutsummaryrefslogtreecommitdiffstats
path: root/core/state_transition.go
diff options
context:
space:
mode:
Diffstat (limited to 'core/state_transition.go')
-rw-r--r--core/state_transition.go5
1 files changed, 2 insertions, 3 deletions
diff --git a/core/state_transition.go b/core/state_transition.go
index 00e383f3f..c487f8514 100644
--- a/core/state_transition.go
+++ b/core/state_transition.go
@@ -3,6 +3,7 @@ package core
import (
"fmt"
"math/big"
+
"github.com/ethereum/go-ethereum/crypto"
"github.com/ethereum/go-ethereum/ethutil"
"github.com/ethereum/go-ethereum/state"
@@ -44,8 +45,6 @@ type StateTransition struct {
}
type Message interface {
- Hash() []byte
-
From() []byte
To() []byte
@@ -152,7 +151,7 @@ func (self *StateTransition) preCheck() (err error) {
}
func (self *StateTransition) TransitionState() (ret []byte, err error) {
- statelogger.Debugf("(~) %x\n", self.msg.Hash())
+ // statelogger.Debugf("(~) %x\n", self.msg.Hash())
// XXX Transactions after this point are considered valid.
if err = self.preCheck(); err != nil {