removed messages
This commit is contained in:
@ -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(),
|
||||
}
|
||||
}
|
||||
|
@ -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)
|
||||
|
Reference in New Issue
Block a user