merge
This commit is contained in:
commit
f9a6038f5b
@ -26,12 +26,11 @@ RUN tar -C /usr/local -xzf go*.tar.gz && go version
|
|||||||
ADD https://api.github.com/repos/ethereum/go-ethereum/git/refs/heads/develop file_does_not_exist
|
ADD https://api.github.com/repos/ethereum/go-ethereum/git/refs/heads/develop file_does_not_exist
|
||||||
|
|
||||||
## Fetch and install go-ethereum
|
## Fetch and install go-ethereum
|
||||||
RUN go get github.com/tools/godep
|
RUN mkdir -p $GOPATH/src/github.com/ethereum/
|
||||||
RUN go get -d github.com/ethereum/go-ethereum/...
|
RUN git clone https://github.com/ethereum/go-ethereum $GOPATH/src/github.com/ethereum/go-ethereum
|
||||||
WORKDIR $GOPATH/src/github.com/ethereum/go-ethereum
|
WORKDIR $GOPATH/src/github.com/ethereum/go-ethereum
|
||||||
RUN git checkout develop
|
RUN git checkout develop
|
||||||
RUN godep restore
|
RUN GOPATH=$GOPATH:$GOPATH/src/github.com/ethereum/go-ethereum/Godeps/_workspace go install -v ./cmd/ethereum
|
||||||
RUN go install -v ./cmd/ethereum
|
|
||||||
|
|
||||||
## Run & expose JSON RPC
|
## Run & expose JSON RPC
|
||||||
ENTRYPOINT ["ethereum", "-rpc=true", "-rpcport=8545"]
|
ENTRYPOINT ["ethereum", "-rpc=true", "-rpcport=8545"]
|
||||||
|
@ -30,6 +30,7 @@ import (
|
|||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/codegangsta/cli"
|
"github.com/codegangsta/cli"
|
||||||
|
"github.com/ethereum/ethash"
|
||||||
"github.com/ethereum/go-ethereum/cmd/utils"
|
"github.com/ethereum/go-ethereum/cmd/utils"
|
||||||
"github.com/ethereum/go-ethereum/common"
|
"github.com/ethereum/go-ethereum/common"
|
||||||
"github.com/ethereum/go-ethereum/core/types"
|
"github.com/ethereum/go-ethereum/core/types"
|
||||||
@ -54,6 +55,17 @@ func init() {
|
|||||||
app.HideVersion = true // we have a command to print the version
|
app.HideVersion = true // we have a command to print the version
|
||||||
app.Commands = []cli.Command{
|
app.Commands = []cli.Command{
|
||||||
blocktestCmd,
|
blocktestCmd,
|
||||||
|
{
|
||||||
|
Action: makedag,
|
||||||
|
Name: "makedag",
|
||||||
|
Usage: "generate ethash dag (for testing)",
|
||||||
|
Description: `
|
||||||
|
The makedag command generates an ethash DAG in /tmp/dag.
|
||||||
|
|
||||||
|
This command exists to support the system testing project.
|
||||||
|
Regular users do not need to execute it.
|
||||||
|
`,
|
||||||
|
},
|
||||||
{
|
{
|
||||||
Action: version,
|
Action: version,
|
||||||
Name: "version",
|
Name: "version",
|
||||||
@ -318,6 +330,15 @@ func dump(ctx *cli.Context) {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func makedag(ctx *cli.Context) {
|
||||||
|
chain, _, _ := utils.GetChain(ctx)
|
||||||
|
pow := ethash.New(chain)
|
||||||
|
fmt.Println("making cache")
|
||||||
|
pow.UpdateCache(true)
|
||||||
|
fmt.Println("making DAG")
|
||||||
|
pow.UpdateDAG()
|
||||||
|
}
|
||||||
|
|
||||||
func version(c *cli.Context) {
|
func version(c *cli.Context) {
|
||||||
fmt.Printf(`%v
|
fmt.Printf(`%v
|
||||||
Version: %v
|
Version: %v
|
||||||
|
@ -65,6 +65,15 @@ func DefaultDataDir() string {
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
func ToHex(b []byte) string {
|
||||||
|
hex := Bytes2Hex(b)
|
||||||
|
// Prefer output of "0x0" instead of "0x"
|
||||||
|
if len(hex) == 0 {
|
||||||
|
hex = "0"
|
||||||
|
}
|
||||||
|
return "0x" + hex
|
||||||
|
}
|
||||||
|
|
||||||
func FromHex(s string) []byte {
|
func FromHex(s string) []byte {
|
||||||
if len(s) > 1 {
|
if len(s) > 1 {
|
||||||
if s[0:2] == "0x" {
|
if s[0:2] == "0x" {
|
||||||
|
22
rpc/api.go
22
rpc/api.go
@ -251,7 +251,7 @@ func (p *EthereumApi) Transact(args *NewTxArgs, reply *interface{}) (err error)
|
|||||||
|
|
||||||
result, _ := account.Transact(common.FromHex(args.To), common.FromHex(args.Value), common.FromHex(args.Gas), common.FromHex(args.GasPrice), common.FromHex(args.Data))
|
result, _ := account.Transact(common.FromHex(args.To), common.FromHex(args.Value), common.FromHex(args.Gas), common.FromHex(args.GasPrice), common.FromHex(args.Data))
|
||||||
if len(result) > 0 {
|
if len(result) > 0 {
|
||||||
*reply = toHex(result)
|
*reply = common.ToHex(result)
|
||||||
}
|
}
|
||||||
} else if _, exists := p.register[args.From]; exists {
|
} else if _, exists := p.register[args.From]; exists {
|
||||||
p.register[ags.From] = append(p.register[args.From], args)
|
p.register[ags.From] = append(p.register[args.From], args)
|
||||||
@ -291,7 +291,7 @@ func (p *EthereumApi) GetBalance(args *GetBalanceArgs, reply *interface{}) error
|
|||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
state := p.getStateWithNum(args.BlockNumber).SafeGet(args.Address)
|
state := p.getStateWithNum(args.BlockNumber).SafeGet(args.Address)
|
||||||
*reply = toHex(state.Balance().Bytes())
|
*reply = common.ToHex(state.Balance().Bytes())
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -389,7 +389,7 @@ func (p *EthereumApi) NewWhisperFilter(args *WhisperFilterArgs, reply *interface
|
|||||||
}
|
}
|
||||||
id = p.xeth().Whisper().Watch(opts)
|
id = p.xeth().Whisper().Watch(opts)
|
||||||
p.messages[id] = &whisperFilter{timeout: time.Now()}
|
p.messages[id] = &whisperFilter{timeout: time.Now()}
|
||||||
*reply = toHex(big.NewInt(int64(id)).Bytes())
|
*reply = common.ToHex(big.NewInt(int64(id)).Bytes())
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -485,7 +485,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
|||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
*reply = toHex(crypto.Sha3(common.FromHex(args.Data)))
|
*reply = common.ToHex(crypto.Sha3(common.FromHex(args.Data)))
|
||||||
case "web3_clientVersion":
|
case "web3_clientVersion":
|
||||||
*reply = p.xeth().Backend().Version()
|
*reply = p.xeth().Backend().Version()
|
||||||
case "net_version":
|
case "net_version":
|
||||||
@ -493,7 +493,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
|||||||
case "net_listening":
|
case "net_listening":
|
||||||
*reply = p.xeth().IsListening()
|
*reply = p.xeth().IsListening()
|
||||||
case "net_peerCount":
|
case "net_peerCount":
|
||||||
*reply = toHex(big.NewInt(int64(p.xeth().PeerCount())).Bytes())
|
*reply = common.ToHex(big.NewInt(int64(p.xeth().PeerCount())).Bytes())
|
||||||
case "eth_coinbase":
|
case "eth_coinbase":
|
||||||
// TODO handling of empty coinbase due to lack of accounts
|
// TODO handling of empty coinbase due to lack of accounts
|
||||||
res := p.xeth().Coinbase()
|
res := p.xeth().Coinbase()
|
||||||
@ -505,11 +505,11 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
|||||||
case "eth_mining":
|
case "eth_mining":
|
||||||
*reply = p.xeth().IsMining()
|
*reply = p.xeth().IsMining()
|
||||||
case "eth_gasPrice":
|
case "eth_gasPrice":
|
||||||
*reply = toHex(defaultGasPrice.Bytes())
|
*reply = common.ToHex(defaultGasPrice.Bytes())
|
||||||
case "eth_accounts":
|
case "eth_accounts":
|
||||||
*reply = p.xeth().Accounts()
|
*reply = p.xeth().Accounts()
|
||||||
case "eth_blockNumber":
|
case "eth_blockNumber":
|
||||||
*reply = toHex(p.xeth().Backend().ChainManager().CurrentBlock().Number().Bytes())
|
*reply = common.ToHex(p.xeth().Backend().ChainManager().CurrentBlock().Number().Bytes())
|
||||||
case "eth_getBalance":
|
case "eth_getBalance":
|
||||||
args := new(GetBalanceArgs)
|
args := new(GetBalanceArgs)
|
||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
@ -544,7 +544,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
*reply = toHex(big.NewInt(v).Bytes())
|
*reply = common.ToHex(big.NewInt(v).Bytes())
|
||||||
case "eth_getBlockTransactionCountByNumber":
|
case "eth_getBlockTransactionCountByNumber":
|
||||||
args := new(GetBlockByNumberArgs)
|
args := new(GetBlockByNumberArgs)
|
||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
@ -555,7 +555,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
*reply = toHex(big.NewInt(v).Bytes())
|
*reply = common.ToHex(big.NewInt(v).Bytes())
|
||||||
case "eth_getUncleCountByBlockHash":
|
case "eth_getUncleCountByBlockHash":
|
||||||
args := new(GetBlockByHashArgs)
|
args := new(GetBlockByHashArgs)
|
||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
@ -566,7 +566,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
*reply = toHex(big.NewInt(v).Bytes())
|
*reply = common.ToHex(big.NewInt(v).Bytes())
|
||||||
case "eth_getUncleCountByBlockNumber":
|
case "eth_getUncleCountByBlockNumber":
|
||||||
args := new(GetBlockByNumberArgs)
|
args := new(GetBlockByNumberArgs)
|
||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
@ -577,7 +577,7 @@ func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error
|
|||||||
if err != nil {
|
if err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
*reply = toHex(big.NewInt(v).Bytes())
|
*reply = common.ToHex(big.NewInt(v).Bytes())
|
||||||
case "eth_getData", "eth_getCode":
|
case "eth_getData", "eth_getCode":
|
||||||
args := new(GetDataArgs)
|
args := new(GetDataArgs)
|
||||||
if err := json.Unmarshal(req.Params, &args); err != nil {
|
if err := json.Unmarshal(req.Params, &args); err != nil {
|
||||||
|
@ -57,23 +57,23 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// convert strict types to hexified strings
|
// convert strict types to hexified strings
|
||||||
ext.BlockNumber = toHex(big.NewInt(b.BlockNumber).Bytes())
|
ext.BlockNumber = common.ToHex(big.NewInt(b.BlockNumber).Bytes())
|
||||||
ext.BlockHash = b.BlockHash.Hex()
|
ext.BlockHash = b.BlockHash.Hex()
|
||||||
ext.ParentHash = b.ParentHash.Hex()
|
ext.ParentHash = b.ParentHash.Hex()
|
||||||
ext.Nonce = toHex(b.Nonce[:])
|
ext.Nonce = common.ToHex(b.Nonce[:])
|
||||||
ext.Sha3Uncles = b.Sha3Uncles.Hex()
|
ext.Sha3Uncles = b.Sha3Uncles.Hex()
|
||||||
ext.LogsBloom = toHex(b.LogsBloom[:])
|
ext.LogsBloom = common.ToHex(b.LogsBloom[:])
|
||||||
ext.TransactionRoot = b.TransactionRoot.Hex()
|
ext.TransactionRoot = b.TransactionRoot.Hex()
|
||||||
ext.StateRoot = b.StateRoot.Hex()
|
ext.StateRoot = b.StateRoot.Hex()
|
||||||
ext.Miner = b.Miner.Hex()
|
ext.Miner = b.Miner.Hex()
|
||||||
ext.Difficulty = toHex(big.NewInt(b.Difficulty).Bytes())
|
ext.Difficulty = common.ToHex(big.NewInt(b.Difficulty).Bytes())
|
||||||
ext.TotalDifficulty = toHex(big.NewInt(b.TotalDifficulty).Bytes())
|
ext.TotalDifficulty = common.ToHex(big.NewInt(b.TotalDifficulty).Bytes())
|
||||||
ext.Size = toHex(big.NewInt(b.Size).Bytes())
|
ext.Size = common.ToHex(big.NewInt(b.Size).Bytes())
|
||||||
// ext.ExtraData = toHex(b.ExtraData)
|
// ext.ExtraData = common.ToHex(b.ExtraData)
|
||||||
ext.GasLimit = toHex(big.NewInt(b.GasLimit).Bytes())
|
ext.GasLimit = common.ToHex(big.NewInt(b.GasLimit).Bytes())
|
||||||
// ext.MinGasPrice = toHex(big.NewInt(b.MinGasPrice).Bytes())
|
// ext.MinGasPrice = common.ToHex(big.NewInt(b.MinGasPrice).Bytes())
|
||||||
ext.GasUsed = toHex(big.NewInt(b.GasUsed).Bytes())
|
ext.GasUsed = common.ToHex(big.NewInt(b.GasUsed).Bytes())
|
||||||
ext.UnixTimestamp = toHex(big.NewInt(b.UnixTimestamp).Bytes())
|
ext.UnixTimestamp = common.ToHex(big.NewInt(b.UnixTimestamp).Bytes())
|
||||||
ext.Transactions = make([]interface{}, len(b.Transactions))
|
ext.Transactions = make([]interface{}, len(b.Transactions))
|
||||||
if b.fullTx {
|
if b.fullTx {
|
||||||
for i, tx := range b.Transactions {
|
for i, tx := range b.Transactions {
|
||||||
@ -162,20 +162,20 @@ func (t *TransactionRes) MarshalJSON() ([]byte, error) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
ext.Hash = t.Hash.Hex()
|
ext.Hash = t.Hash.Hex()
|
||||||
ext.Nonce = toHex(big.NewInt(t.Nonce).Bytes())
|
ext.Nonce = common.ToHex(big.NewInt(t.Nonce).Bytes())
|
||||||
ext.BlockHash = t.BlockHash.Hex()
|
ext.BlockHash = t.BlockHash.Hex()
|
||||||
ext.BlockNumber = toHex(big.NewInt(t.BlockNumber).Bytes())
|
ext.BlockNumber = common.ToHex(big.NewInt(t.BlockNumber).Bytes())
|
||||||
ext.TxIndex = toHex(big.NewInt(t.TxIndex).Bytes())
|
ext.TxIndex = common.ToHex(big.NewInt(t.TxIndex).Bytes())
|
||||||
ext.From = t.From.Hex()
|
ext.From = t.From.Hex()
|
||||||
if t.To == nil {
|
if t.To == nil {
|
||||||
ext.To = "0x00"
|
ext.To = "0x00"
|
||||||
} else {
|
} else {
|
||||||
ext.To = t.To.Hex()
|
ext.To = t.To.Hex()
|
||||||
}
|
}
|
||||||
ext.Value = toHex(big.NewInt(t.Value).Bytes())
|
ext.Value = common.ToHex(big.NewInt(t.Value).Bytes())
|
||||||
ext.Gas = toHex(big.NewInt(t.Gas).Bytes())
|
ext.Gas = common.ToHex(big.NewInt(t.Gas).Bytes())
|
||||||
ext.GasPrice = toHex(big.NewInt(t.GasPrice).Bytes())
|
ext.GasPrice = common.ToHex(big.NewInt(t.GasPrice).Bytes())
|
||||||
ext.Input = toHex(t.Input)
|
ext.Input = common.ToHex(t.Input)
|
||||||
|
|
||||||
return json.Marshal(ext)
|
return json.Marshal(ext)
|
||||||
}
|
}
|
||||||
|
13
rpc/util.go
13
rpc/util.go
@ -124,17 +124,8 @@ func (self JsonWrapper) ParseRequestBody(req *http.Request) (RpcRequest, error)
|
|||||||
return reqParsed, nil
|
return reqParsed, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func toHex(b []byte) string {
|
|
||||||
hex := common.Bytes2Hex(b)
|
|
||||||
// Prefer output of "0x0" instead of "0x"
|
|
||||||
if len(hex) == 0 {
|
|
||||||
hex = "0"
|
|
||||||
}
|
|
||||||
return "0x" + hex
|
|
||||||
}
|
|
||||||
|
|
||||||
func i2hex(n int) string {
|
func i2hex(n int) string {
|
||||||
return toHex(big.NewInt(int64(n)).Bytes())
|
return common.ToHex(big.NewInt(int64(n)).Bytes())
|
||||||
}
|
}
|
||||||
|
|
||||||
type RpcServer interface {
|
type RpcServer interface {
|
||||||
@ -156,7 +147,7 @@ func toLogs(logs state.Logs) (ls []Log) {
|
|||||||
var l Log
|
var l Log
|
||||||
l.Topic = make([]string, len(log.Topics()))
|
l.Topic = make([]string, len(log.Topics()))
|
||||||
l.Address = log.Address().Hex()
|
l.Address = log.Address().Hex()
|
||||||
l.Data = toHex(log.Data())
|
l.Data = common.ToHex(log.Data())
|
||||||
l.Number = log.Number()
|
l.Number = log.Number()
|
||||||
for j, topic := range log.Topics() {
|
for j, topic := range log.Topics() {
|
||||||
l.Topic[j] = topic.Hex()
|
l.Topic[j] = topic.Hex()
|
||||||
|
@ -4,8 +4,8 @@ package qwhisper
|
|||||||
import (
|
import (
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
"github.com/ethereum/go-ethereum/crypto"
|
|
||||||
"github.com/ethereum/go-ethereum/common"
|
"github.com/ethereum/go-ethereum/common"
|
||||||
|
"github.com/ethereum/go-ethereum/crypto"
|
||||||
"github.com/ethereum/go-ethereum/logger"
|
"github.com/ethereum/go-ethereum/logger"
|
||||||
"github.com/ethereum/go-ethereum/whisper"
|
"github.com/ethereum/go-ethereum/whisper"
|
||||||
"github.com/obscuren/qml"
|
"github.com/obscuren/qml"
|
||||||
@ -13,8 +13,6 @@ import (
|
|||||||
|
|
||||||
var qlogger = logger.NewLogger("QSHH")
|
var qlogger = logger.NewLogger("QSHH")
|
||||||
|
|
||||||
func toHex(b []byte) string { return "0x" + common.Bytes2Hex(b) }
|
|
||||||
|
|
||||||
type Whisper struct {
|
type Whisper struct {
|
||||||
*whisper.Whisper
|
*whisper.Whisper
|
||||||
view qml.Object
|
view qml.Object
|
||||||
@ -66,7 +64,7 @@ func (self *Whisper) Post(payload []string, to, from string, topics []string, pr
|
|||||||
func (self *Whisper) NewIdentity() string {
|
func (self *Whisper) NewIdentity() string {
|
||||||
key := self.Whisper.NewIdentity()
|
key := self.Whisper.NewIdentity()
|
||||||
|
|
||||||
return toHex(crypto.FromECDSAPub(&key.PublicKey))
|
return common.ToHex(crypto.FromECDSAPub(&key.PublicKey))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *Whisper) HasIdentity(key string) bool {
|
func (self *Whisper) HasIdentity(key string) bool {
|
||||||
|
@ -14,10 +14,6 @@ import (
|
|||||||
"github.com/ethereum/go-ethereum/state"
|
"github.com/ethereum/go-ethereum/state"
|
||||||
)
|
)
|
||||||
|
|
||||||
func toHex(b []byte) string {
|
|
||||||
return "0x" + common.Bytes2Hex(b)
|
|
||||||
}
|
|
||||||
|
|
||||||
type Object struct {
|
type Object struct {
|
||||||
*state.StateObject
|
*state.StateObject
|
||||||
}
|
}
|
||||||
@ -49,7 +45,7 @@ func (self *Object) Storage() (storage map[string]string) {
|
|||||||
for it.Next() {
|
for it.Next() {
|
||||||
var data []byte
|
var data []byte
|
||||||
rlp.Decode(bytes.NewReader(it.Value), &data)
|
rlp.Decode(bytes.NewReader(it.Value), &data)
|
||||||
storage[toHex(it.Key)] = toHex(data)
|
storage[common.ToHex(it.Key)] = common.ToHex(data)
|
||||||
}
|
}
|
||||||
|
|
||||||
return
|
return
|
||||||
@ -95,12 +91,12 @@ func NewBlock(block *types.Block) *Block {
|
|||||||
return &Block{
|
return &Block{
|
||||||
ref: block, Size: block.Size().String(),
|
ref: block, Size: block.Size().String(),
|
||||||
Number: int(block.NumberU64()), GasUsed: block.GasUsed().String(),
|
Number: int(block.NumberU64()), GasUsed: block.GasUsed().String(),
|
||||||
GasLimit: block.GasLimit().String(), Hash: toHex(block.Hash().Bytes()),
|
GasLimit: block.GasLimit().String(), Hash: block.Hash().Hex(),
|
||||||
Transactions: txlist, Uncles: ulist,
|
Transactions: txlist, Uncles: ulist,
|
||||||
Time: block.Time(),
|
Time: block.Time(),
|
||||||
Coinbase: toHex(block.Coinbase().Bytes()),
|
Coinbase: block.Coinbase().Hex(),
|
||||||
PrevHash: toHex(block.ParentHash().Bytes()),
|
PrevHash: block.ParentHash().Hex(),
|
||||||
Bloom: toHex(block.Bloom().Bytes()),
|
Bloom: common.ToHex(block.Bloom().Bytes()),
|
||||||
Raw: block.String(),
|
Raw: block.String(),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@ -151,10 +147,10 @@ func NewTx(tx *types.Transaction) *Transaction {
|
|||||||
if createsContract {
|
if createsContract {
|
||||||
data = strings.Join(core.Disassemble(tx.Data()), "\n")
|
data = strings.Join(core.Disassemble(tx.Data()), "\n")
|
||||||
} else {
|
} else {
|
||||||
data = toHex(tx.Data())
|
data = common.ToHex(tx.Data())
|
||||||
}
|
}
|
||||||
|
|
||||||
return &Transaction{ref: tx, Hash: hash, Value: common.CurrencyToString(tx.Value()), Address: receiver, Contract: createsContract, Gas: tx.Gas().String(), GasPrice: tx.GasPrice().String(), Data: data, Sender: sender.Hex(), CreatesContract: createsContract, RawData: toHex(tx.Data())}
|
return &Transaction{ref: tx, Hash: hash, Value: common.CurrencyToString(tx.Value()), Address: receiver, Contract: createsContract, Gas: tx.Gas().String(), GasPrice: tx.GasPrice().String(), Data: data, Sender: sender.Hex(), CreatesContract: createsContract, RawData: common.ToHex(tx.Data())}
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *Transaction) ToString() string {
|
func (self *Transaction) ToString() string {
|
||||||
@ -168,7 +164,7 @@ type Key struct {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func NewKey(key *crypto.KeyPair) *Key {
|
func NewKey(key *crypto.KeyPair) *Key {
|
||||||
return &Key{toHex(key.Address()), toHex(key.PrivateKey), toHex(key.PublicKey)}
|
return &Key{common.ToHex(key.Address()), common.ToHex(key.PrivateKey), common.ToHex(key.PublicKey)}
|
||||||
}
|
}
|
||||||
|
|
||||||
type PReceipt struct {
|
type PReceipt struct {
|
||||||
@ -181,9 +177,9 @@ type PReceipt struct {
|
|||||||
func NewPReciept(contractCreation bool, creationAddress, hash, address []byte) *PReceipt {
|
func NewPReciept(contractCreation bool, creationAddress, hash, address []byte) *PReceipt {
|
||||||
return &PReceipt{
|
return &PReceipt{
|
||||||
contractCreation,
|
contractCreation,
|
||||||
toHex(creationAddress),
|
common.ToHex(creationAddress),
|
||||||
toHex(hash),
|
common.ToHex(hash),
|
||||||
toHex(address),
|
common.ToHex(address),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -220,8 +216,8 @@ type Receipt struct {
|
|||||||
func NewReciept(contractCreation bool, creationAddress, hash, address []byte) *Receipt {
|
func NewReciept(contractCreation bool, creationAddress, hash, address []byte) *Receipt {
|
||||||
return &Receipt{
|
return &Receipt{
|
||||||
contractCreation,
|
contractCreation,
|
||||||
toHex(creationAddress),
|
common.ToHex(creationAddress),
|
||||||
toHex(hash),
|
common.ToHex(hash),
|
||||||
toHex(address),
|
common.ToHex(address),
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -56,7 +56,7 @@ func (self *Whisper) Post(payload string, to, from string, topics []string, prio
|
|||||||
func (self *Whisper) NewIdentity() string {
|
func (self *Whisper) NewIdentity() string {
|
||||||
key := self.Whisper.NewIdentity()
|
key := self.Whisper.NewIdentity()
|
||||||
|
|
||||||
return toHex(crypto.FromECDSAPub(&key.PublicKey))
|
return common.ToHex(crypto.FromECDSAPub(&key.PublicKey))
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *Whisper) HasIdentity(key string) bool {
|
func (self *Whisper) HasIdentity(key string) bool {
|
||||||
@ -112,9 +112,9 @@ type WhisperMessage struct {
|
|||||||
func NewWhisperMessage(msg *whisper.Message) WhisperMessage {
|
func NewWhisperMessage(msg *whisper.Message) WhisperMessage {
|
||||||
return WhisperMessage{
|
return WhisperMessage{
|
||||||
ref: msg,
|
ref: msg,
|
||||||
Payload: toHex(msg.Payload),
|
Payload: common.ToHex(msg.Payload),
|
||||||
From: toHex(crypto.FromECDSAPub(msg.Recover())),
|
From: common.ToHex(crypto.FromECDSAPub(msg.Recover())),
|
||||||
To: toHex(crypto.FromECDSAPub(msg.To)),
|
To: common.ToHex(crypto.FromECDSAPub(msg.To)),
|
||||||
Sent: msg.Sent,
|
Sent: msg.Sent,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
16
xeth/xeth.go
16
xeth/xeth.go
@ -170,7 +170,7 @@ func (self *XEth) Accounts() []string {
|
|||||||
accounts, _ := self.eth.AccountManager().Accounts()
|
accounts, _ := self.eth.AccountManager().Accounts()
|
||||||
accountAddresses := make([]string, len(accounts))
|
accountAddresses := make([]string, len(accounts))
|
||||||
for i, ac := range accounts {
|
for i, ac := range accounts {
|
||||||
accountAddresses[i] = toHex(ac.Address)
|
accountAddresses[i] = common.ToHex(ac.Address)
|
||||||
}
|
}
|
||||||
return accountAddresses
|
return accountAddresses
|
||||||
}
|
}
|
||||||
@ -201,7 +201,7 @@ func (self *XEth) IsListening() bool {
|
|||||||
|
|
||||||
func (self *XEth) Coinbase() string {
|
func (self *XEth) Coinbase() string {
|
||||||
cb, _ := self.eth.AccountManager().Coinbase()
|
cb, _ := self.eth.AccountManager().Coinbase()
|
||||||
return toHex(cb)
|
return common.ToHex(cb)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *XEth) NumberToHuman(balance string) string {
|
func (self *XEth) NumberToHuman(balance string) string {
|
||||||
@ -213,7 +213,7 @@ func (self *XEth) NumberToHuman(balance string) string {
|
|||||||
func (self *XEth) StorageAt(addr, storageAddr string) string {
|
func (self *XEth) StorageAt(addr, storageAddr string) string {
|
||||||
storage := self.State().SafeGet(addr).StorageString(storageAddr)
|
storage := self.State().SafeGet(addr).StorageString(storageAddr)
|
||||||
|
|
||||||
return toHex(storage.Bytes())
|
return common.ToHex(storage.Bytes())
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *XEth) BalanceAt(addr string) string {
|
func (self *XEth) BalanceAt(addr string) string {
|
||||||
@ -225,7 +225,7 @@ func (self *XEth) TxCountAt(address string) int {
|
|||||||
}
|
}
|
||||||
|
|
||||||
func (self *XEth) CodeAt(address string) string {
|
func (self *XEth) CodeAt(address string) string {
|
||||||
return toHex(self.State().SafeGet(address).Code())
|
return common.ToHex(self.State().SafeGet(address).Code())
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *XEth) IsContract(address string) bool {
|
func (self *XEth) IsContract(address string) bool {
|
||||||
@ -238,7 +238,7 @@ func (self *XEth) SecretToAddress(key string) string {
|
|||||||
return ""
|
return ""
|
||||||
}
|
}
|
||||||
|
|
||||||
return toHex(pair.Address())
|
return common.ToHex(pair.Address())
|
||||||
}
|
}
|
||||||
|
|
||||||
type KeyVal struct {
|
type KeyVal struct {
|
||||||
@ -251,7 +251,7 @@ func (self *XEth) EachStorage(addr string) string {
|
|||||||
object := self.State().SafeGet(addr)
|
object := self.State().SafeGet(addr)
|
||||||
it := object.Trie().Iterator()
|
it := object.Trie().Iterator()
|
||||||
for it.Next() {
|
for it.Next() {
|
||||||
values = append(values, KeyVal{toHex(it.Key), toHex(it.Value)})
|
values = append(values, KeyVal{common.ToHex(it.Key), common.ToHex(it.Value)})
|
||||||
}
|
}
|
||||||
|
|
||||||
valuesJson, err := json.Marshal(values)
|
valuesJson, err := json.Marshal(values)
|
||||||
@ -265,7 +265,7 @@ func (self *XEth) EachStorage(addr string) string {
|
|||||||
func (self *XEth) ToAscii(str string) string {
|
func (self *XEth) ToAscii(str string) string {
|
||||||
padded := common.RightPadBytes([]byte(str), 32)
|
padded := common.RightPadBytes([]byte(str), 32)
|
||||||
|
|
||||||
return "0x" + toHex(padded)
|
return "0x" + common.ToHex(padded)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *XEth) FromAscii(str string) string {
|
func (self *XEth) FromAscii(str string) string {
|
||||||
@ -325,7 +325,7 @@ func (self *XEth) Call(fromStr, toStr, valueStr, gasStr, gasPriceStr, dataStr st
|
|||||||
vmenv := core.NewEnv(statedb, self.chainManager, msg, block)
|
vmenv := core.NewEnv(statedb, self.chainManager, msg, block)
|
||||||
|
|
||||||
res, err := vmenv.Call(msg.from, msg.to, msg.data, msg.gas, msg.gasPrice, msg.value)
|
res, err := vmenv.Call(msg.from, msg.to, msg.data, msg.gas, msg.gasPrice, msg.value)
|
||||||
return toHex(res), err
|
return common.ToHex(res), err
|
||||||
}
|
}
|
||||||
|
|
||||||
func (self *XEth) Transact(fromStr, toStr, valueStr, gasStr, gasPriceStr, codeStr string) (string, error) {
|
func (self *XEth) Transact(fromStr, toStr, valueStr, gasStr, gasPriceStr, codeStr string) (string, error) {
|
||||||
|
Loading…
Reference in New Issue
Block a user