Merge branch 'rpcfrontier' of github.com-obscure:ethereum/go-ethereum into rpcfrontier

pull/444/head
obscuren 10 years ago
commit 64933321fb
  1. 2
      rpc/api.go
  2. 65
      rpc/responses.go
  3. 6
      rpc/util.go
  4. 25
      rpc/util_test.go

@ -459,7 +459,7 @@ func (p *EthereumApi) GetBlockUncleCountByNumber(blocknum int64) (int64, error)
func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error { func (p *EthereumApi) GetRequestReply(req *RpcRequest, reply *interface{}) error {
// Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC // Spec at https://github.com/ethereum/wiki/wiki/Generic-JSON-RPC
rpclogger.Infof("%s %s", req.Method, req.Params) rpclogger.Debugf("%s %s", req.Method, req.Params)
switch req.Method { switch req.Method {
case "web3_sha3": case "web3_sha3":
args := new(Sha3Args) args := new(Sha3Args)

@ -5,7 +5,6 @@ import (
"math/big" "math/big"
"github.com/ethereum/go-ethereum/core/types" "github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/ethutil"
) )
type BlockRes struct { type BlockRes struct {
@ -56,23 +55,23 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) {
} }
// convert strict types to hexified strings // convert strict types to hexified strings
ext.BlockNumber = ethutil.Bytes2Hex(big.NewInt(b.BlockNumber).Bytes()) ext.BlockNumber = toHex(big.NewInt(b.BlockNumber).Bytes())
ext.BlockHash = ethutil.Bytes2Hex(b.BlockHash) ext.BlockHash = toHex(b.BlockHash)
ext.ParentHash = ethutil.Bytes2Hex(b.ParentHash) ext.ParentHash = toHex(b.ParentHash)
ext.Nonce = ethutil.Bytes2Hex(b.Nonce) ext.Nonce = toHex(b.Nonce)
ext.Sha3Uncles = ethutil.Bytes2Hex(b.Sha3Uncles) ext.Sha3Uncles = toHex(b.Sha3Uncles)
ext.LogsBloom = ethutil.Bytes2Hex(b.LogsBloom) ext.LogsBloom = toHex(b.LogsBloom)
ext.TransactionRoot = ethutil.Bytes2Hex(b.TransactionRoot) ext.TransactionRoot = toHex(b.TransactionRoot)
ext.StateRoot = ethutil.Bytes2Hex(b.StateRoot) ext.StateRoot = toHex(b.StateRoot)
ext.Miner = ethutil.Bytes2Hex(b.Miner) ext.Miner = toHex(b.Miner)
ext.Difficulty = ethutil.Bytes2Hex(big.NewInt(b.Difficulty).Bytes()) ext.Difficulty = toHex(big.NewInt(b.Difficulty).Bytes())
ext.TotalDifficulty = ethutil.Bytes2Hex(big.NewInt(b.TotalDifficulty).Bytes()) ext.TotalDifficulty = toHex(big.NewInt(b.TotalDifficulty).Bytes())
ext.Size = ethutil.Bytes2Hex(big.NewInt(b.Size).Bytes()) ext.Size = toHex(big.NewInt(b.Size).Bytes())
ext.ExtraData = ethutil.Bytes2Hex(b.ExtraData) // ext.ExtraData = toHex(b.ExtraData)
ext.GasLimit = ethutil.Bytes2Hex(big.NewInt(b.GasLimit).Bytes()) ext.GasLimit = toHex(big.NewInt(b.GasLimit).Bytes())
ext.MinGasPrice = ethutil.Bytes2Hex(big.NewInt(b.MinGasPrice).Bytes()) // ext.MinGasPrice = toHex(big.NewInt(b.MinGasPrice).Bytes())
ext.GasUsed = ethutil.Bytes2Hex(big.NewInt(b.GasUsed).Bytes()) ext.GasUsed = toHex(big.NewInt(b.GasUsed).Bytes())
ext.UnixTimestamp = ethutil.Bytes2Hex(big.NewInt(b.UnixTimestamp).Bytes()) ext.UnixTimestamp = 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 {
@ -80,12 +79,12 @@ func (b *BlockRes) MarshalJSON() ([]byte, error) {
} }
} else { } else {
for i, tx := range b.Transactions { for i, tx := range b.Transactions {
ext.Transactions[i] = ethutil.Bytes2Hex(tx.Hash) ext.Transactions[i] = toHex(tx.Hash)
} }
} }
ext.Uncles = make([]string, len(b.Uncles)) ext.Uncles = make([]string, len(b.Uncles))
for i, v := range b.Uncles { for i, v := range b.Uncles {
ext.Uncles[i] = ethutil.Bytes2Hex(v) ext.Uncles[i] = toHex(v)
} }
return json.Marshal(ext) return json.Marshal(ext)
@ -103,7 +102,9 @@ func NewBlockRes(block *types.Block) *BlockRes {
res.StateRoot = block.Root() res.StateRoot = block.Root()
res.Miner = block.Header().Coinbase res.Miner = block.Header().Coinbase
res.Difficulty = block.Difficulty().Int64() res.Difficulty = block.Difficulty().Int64()
res.TotalDifficulty = block.Td.Int64() if block.Td != nil {
res.TotalDifficulty = block.Td.Int64()
}
res.Size = int64(block.Size()) res.Size = int64(block.Size())
// res.ExtraData = // res.ExtraData =
res.GasLimit = block.GasLimit().Int64() res.GasLimit = block.GasLimit().Int64()
@ -154,17 +155,17 @@ func (t *TransactionRes) MarshalJSON() ([]byte, error) {
Input string `json:"input"` Input string `json:"input"`
} }
ext.Hash = ethutil.Bytes2Hex(t.Hash) ext.Hash = toHex(t.Hash)
ext.Nonce = ethutil.Bytes2Hex(big.NewInt(t.Nonce).Bytes()) ext.Nonce = toHex(big.NewInt(t.Nonce).Bytes())
ext.BlockHash = ethutil.Bytes2Hex(t.BlockHash) ext.BlockHash = toHex(t.BlockHash)
ext.BlockNumber = ethutil.Bytes2Hex(big.NewInt(t.BlockNumber).Bytes()) ext.BlockNumber = toHex(big.NewInt(t.BlockNumber).Bytes())
ext.TxIndex = ethutil.Bytes2Hex(big.NewInt(t.TxIndex).Bytes()) ext.TxIndex = toHex(big.NewInt(t.TxIndex).Bytes())
ext.From = ethutil.Bytes2Hex(t.From) ext.From = toHex(t.From)
ext.To = ethutil.Bytes2Hex(t.To) ext.To = toHex(t.To)
ext.Value = ethutil.Bytes2Hex(big.NewInt(t.Value).Bytes()) ext.Value = toHex(big.NewInt(t.Value).Bytes())
ext.Gas = ethutil.Bytes2Hex(big.NewInt(t.Gas).Bytes()) ext.Gas = toHex(big.NewInt(t.Gas).Bytes())
ext.GasPrice = ethutil.Bytes2Hex(big.NewInt(t.GasPrice).Bytes()) ext.GasPrice = toHex(big.NewInt(t.GasPrice).Bytes())
ext.Input = ethutil.Bytes2Hex(t.Input) ext.Input = toHex(t.Input)
return json.Marshal(ext) return json.Marshal(ext)
} }

@ -91,7 +91,7 @@ func UnmarshalRawMessages(b []byte, iface interface{}, number *int64) (err error
func (self JsonWrapper) Send(writer io.Writer, v interface{}) (n int, err error) { func (self JsonWrapper) Send(writer io.Writer, v interface{}) (n int, err error) {
var payload []byte var payload []byte
payload, err = json.Marshal(v) payload, err = json.MarshalIndent(v, "", "\t")
if err != nil { if err != nil {
rpclogger.Fatalln("Error marshalling JSON", err) rpclogger.Fatalln("Error marshalling JSON", err)
return 0, err return 0, err
@ -127,11 +127,15 @@ func toHex(b []byte) string {
} }
return "0x" + hex 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" {
s = s[2:] s = s[2:]
} }
if len(s)%2 == 1 {
s = "0" + s
}
return ethutil.Hex2Bytes(s) return ethutil.Hex2Bytes(s)
} }
return nil return nil

@ -0,0 +1,25 @@
package rpc
import (
"bytes"
"testing"
)
//fromHex
func TestFromHex(t *testing.T) {
input := "0x01"
expected := []byte{1}
result := fromHex(input)
if bytes.Compare(expected, result) != 0 {
t.Errorf("Expected % x got % x", expected, result)
}
}
func TestFromHexOddLength(t *testing.T) {
input := "0x1"
expected := []byte{1}
result := fromHex(input)
if bytes.Compare(expected, result) != 0 {
t.Errorf("Expected % x got % x", expected, result)
}
}
Loading…
Cancel
Save