diff options
author | Felix Lange <fjl@twurst.com> | 2015-03-17 19:00:29 +0800 |
---|---|---|
committer | Felix Lange <fjl@twurst.com> | 2015-03-17 19:00:29 +0800 |
commit | 27f7aa01639696f4afa4233e0a301afafdd7b950 (patch) | |
tree | 97636653dc2d88c344f6a37ef5b4113339e434d1 /core/state_transition.go | |
parent | b95387a0dc0da6198549689e6b03d21a221e813b (diff) | |
download | dexon-27f7aa01639696f4afa4233e0a301afafdd7b950.tar.gz dexon-27f7aa01639696f4afa4233e0a301afafdd7b950.tar.zst dexon-27f7aa01639696f4afa4233e0a301afafdd7b950.zip |
core: adapt Message for new Transaction.From signature
Diffstat (limited to 'core/state_transition.go')
-rw-r--r-- | core/state_transition.go | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/core/state_transition.go b/core/state_transition.go index 575bdf026..ef822e86c 100644 --- a/core/state_transition.go +++ b/core/state_transition.go @@ -44,9 +44,10 @@ type StateTransition struct { env vm.Environment } +// Message represents a message sent to a contract. type Message interface { - From() common.Address - To() common.Address + From() (common.Address, error) + To() *common.Address GasPrice() *big.Int Gas() *big.Int |