You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
44 lines
1.1 KiB
44 lines
1.1 KiB
package rpc
|
|
|
|
import (
|
|
"context"
|
|
"encoding/json"
|
|
"errors"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/rpc"
|
|
"github.com/harmony-one/harmony/hmy"
|
|
)
|
|
|
|
var (
|
|
parityTraceGO = "ParityBlockTracer"
|
|
)
|
|
|
|
type PublicParityTracerService struct {
|
|
*PublicTracerService
|
|
}
|
|
|
|
func (s *PublicParityTracerService) Transaction(ctx context.Context, hash common.Hash) (interface{}, error) {
|
|
return s.TraceTransaction(ctx, hash, &hmy.TraceConfig{Tracer: &parityTraceGO})
|
|
}
|
|
|
|
// trace_block RPC
|
|
func (s *PublicParityTracerService) Block(ctx context.Context, number rpc.BlockNumber) (interface{}, error) {
|
|
block := s.hmy.BlockChain.GetBlockByNumber(uint64(number))
|
|
if block == nil {
|
|
return nil, nil
|
|
}
|
|
results, err := s.hmy.TraceBlock(ctx, block, &hmy.TraceConfig{Tracer: &parityTraceGO})
|
|
if err != nil {
|
|
return results, err
|
|
}
|
|
var resultArray = make([]json.RawMessage, 0)
|
|
for _, result := range results {
|
|
raw, ok := result.Result.([]json.RawMessage)
|
|
if !ok {
|
|
return results, errors.New("tracer bug:expected []json.RawMessage")
|
|
}
|
|
resultArray = append(resultArray, raw...)
|
|
}
|
|
return resultArray, nil
|
|
}
|
|
|