aboutsummaryrefslogtreecommitdiffstats
path: root/xeth
diff options
context:
space:
mode:
authorobscuren <geffobscura@gmail.com>2015-02-13 00:06:15 +0800
committerobscuren <geffobscura@gmail.com>2015-02-13 00:06:15 +0800
commit38faf2c51a1e4a86cda5dfa1b4f7fdae4fd7f58d (patch)
tree4926b4cccc953ad368559ab6cd6efbeb5c3ab74e /xeth
parent31fdc645ed9c6bfa63deb8a688888b6cacfd821e (diff)
downloadgo-tangerine-38faf2c51a1e4a86cda5dfa1b4f7fdae4fd7f58d.tar
go-tangerine-38faf2c51a1e4a86cda5dfa1b4f7fdae4fd7f58d.tar.gz
go-tangerine-38faf2c51a1e4a86cda5dfa1b4f7fdae4fd7f58d.tar.bz2
go-tangerine-38faf2c51a1e4a86cda5dfa1b4f7fdae4fd7f58d.tar.lz
go-tangerine-38faf2c51a1e4a86cda5dfa1b4f7fdae4fd7f58d.tar.xz
go-tangerine-38faf2c51a1e4a86cda5dfa1b4f7fdae4fd7f58d.tar.zst
go-tangerine-38faf2c51a1e4a86cda5dfa1b4f7fdae4fd7f58d.zip
removed messages
Diffstat (limited to 'xeth')
-rw-r--r--xeth/types.go30
-rw-r--r--xeth/xeth.go9
2 files changed, 0 insertions, 39 deletions
diff --git a/xeth/types.go b/xeth/types.go
index 34caf5cbc..1bab1e1b3 100644
--- a/xeth/types.go
+++ b/xeth/types.go
@@ -235,33 +235,3 @@ func NewReciept(contractCreation bool, creationAddress, hash, address []byte) *R
toHex(address),
}
}
-
-type Message struct {
- To string `json:"to"`
- From string `json:"from"`
- Input string `json:"input"`
- Output string `json:"output"`
- Path int32 `json:"path"`
- Origin string `json:"origin"`
- Timestamp int32 `json:"timestamp"`
- Coinbase string `json:"coinbase"`
- Block string `json:"block"`
- Number int32 `json:"number"`
- Value string `json:"value"`
-}
-
-func NewMessage(message *state.Message) Message {
- return Message{
- To: toHex(message.To),
- From: toHex(message.From),
- Input: toHex(message.Input),
- Output: toHex(message.Output),
- Path: int32(message.Path),
- Origin: toHex(message.Origin),
- Timestamp: int32(message.Timestamp),
- Coinbase: toHex(message.Origin),
- Block: toHex(message.Block),
- Number: int32(message.Number.Int64()),
- Value: message.Value.String(),
- }
-}
diff --git a/xeth/xeth.go b/xeth/xeth.go
index 0e71a0ed9..4098daf98 100644
--- a/xeth/xeth.go
+++ b/xeth/xeth.go
@@ -192,15 +192,6 @@ func (self *XEth) FromNumber(str string) string {
return ethutil.BigD(fromHex(str)).String()
}
-func ToMessages(messages state.Messages) *ethutil.List {
- var msgs []Message
- for _, m := range messages {
- msgs = append(msgs, NewMessage(m))
- }
-
- return ethutil.NewList(msgs)
-}
-
func (self *XEth) PushTx(encodedTx string) (string, error) {
tx := types.NewTransactionFromBytes(fromHex(encodedTx))
err := self.eth.TxPool().Add(tx)