aboutsummaryrefslogtreecommitdiffstats
path: root/ethchain/transaction.go
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2014-03-21 06:17:53 +0800
committerobscuren <geffobscura@gmail.com>2014-03-21 06:17:53 +0800
commit7705b23f248156878d00c301fbbadafedaf7e3d2 (patch)
tree11f3373c598106b9f6f689370079a9b220a42e34 /ethchain/transaction.go
parentf3d27bf5d878120346f8cdd0744e7f1f8e1ee631 (diff)
downloaddexon-7705b23f248156878d00c301fbbadafedaf7e3d2.tar.gz
dexon-7705b23f248156878d00c301fbbadafedaf7e3d2.tar.zst
dexon-7705b23f248156878d00c301fbbadafedaf7e3d2.zip
Removed caller from tx and added "callership" to account.
Transactions can no longer serve as callers. Accounts are now the initial callee of closures. Transactions now serve as transport to call closures.
Diffstat (limited to 'ethchain/transaction.go')
-rw-r--r--ethchain/transaction.go9
1 files changed, 0 insertions, 9 deletions
diff --git a/ethchain/transaction.go b/ethchain/transaction.go
index 07e7ea970..57df9cdc4 100644
--- a/ethchain/transaction.go
+++ b/ethchain/transaction.go
@@ -29,15 +29,6 @@ func NewTransaction(to []byte, value *big.Int, data []string) *Transaction {
return &tx
}
-// Implements Callee
-func (tx *Transaction) ReturnGas(value *big.Int, state *State) {
- // Return the value back to the sender
- sender := tx.Sender()
- account := state.GetAccount(sender)
- account.AddFunds(value)
- state.UpdateAccount(sender, account)
-}
-
// XXX Deprecated
func NewTransactionFromData(data []byte) *Transaction {
return NewTransactionFromBytes(data)