aboutsummaryrefslogtreecommitdiffstats
path: root/rpc
diff options
context:
space:
mode:
authorJeffrey Wilcke <jeffrey@ethereum.org>2015-07-06 20:00:17 +0800
committerJeffrey Wilcke <jeffrey@ethereum.org>2015-07-06 20:00:17 +0800
commitcc29b4bc27bf8f05ea863658e3627ee3c019e318 (patch)
tree7780b142547c121d9ada914b6bedce86777636cd /rpc
parent457a3c8f7691314b30909787b952fccebf7f38df (diff)
parent4f7fc7b23f50f3fba4e2fb6815738c4ec2c8fe0a (diff)
downloaddexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar
dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.gz
dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.bz2
dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.lz
dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.xz
dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.tar.zst
dexon-cc29b4bc27bf8f05ea863658e3627ee3c019e318.zip
Merge pull request #1413 from obscuren/receipt-fix
rpc, xeth: fixed returned tx hash & receipt logs
Diffstat (limited to 'rpc')
-rw-r--r--rpc/api/parsing.go23
1 files changed, 14 insertions, 9 deletions
diff --git a/rpc/api/parsing.go b/rpc/api/parsing.go
index 4209ea7e3..8e25ffffb 100644
--- a/rpc/api/parsing.go
+++ b/rpc/api/parsing.go
@@ -404,14 +404,14 @@ func NewUncleRes(h *types.Header) *UncleRes {
// }
type ReceiptRes struct {
- TransactionHash *hexdata `json:transactionHash`
- TransactionIndex *hexnum `json:transactionIndex`
- BlockNumber *hexnum `json:blockNumber`
- BlockHash *hexdata `json:blockHash`
- CumulativeGasUsed *hexnum `json:cumulativeGasUsed`
- GasUsed *hexnum `json:gasUsed`
- ContractAddress *hexdata `json:contractAddress`
- Logs *[]interface{} `json:logs`
+ TransactionHash *hexdata `json:"transactionHash"`
+ TransactionIndex *hexnum `json:"transactionIndex"`
+ BlockNumber *hexnum `json:"blockNumber"`
+ BlockHash *hexdata `json:"blockHash"`
+ CumulativeGasUsed *hexnum `json:"cumulativeGasUsed"`
+ GasUsed *hexnum `json:"gasUsed"`
+ ContractAddress *hexdata `json:"contractAddress"`
+ Logs *[]interface{} `json:"logs"`
}
func NewReceiptRes(rec *types.Receipt) *ReceiptRes {
@@ -430,7 +430,12 @@ func NewReceiptRes(rec *types.Receipt) *ReceiptRes {
if bytes.Compare(rec.ContractAddress.Bytes(), bytes.Repeat([]byte{0}, 20)) != 0 {
v.ContractAddress = newHexData(rec.ContractAddress)
}
- // v.Logs = rec.Logs()
+
+ logs := make([]interface{}, len(rec.Logs()))
+ for i, log := range rec.Logs() {
+ logs[i] = NewLogRes(log)
+ }
+ v.Logs = &logs
return v
}