mirror of
https://gitlab.com/pulsechaincom/erigon-pulse.git
synced 2024-12-26 05:27:19 +00:00
0be3044b7e
* rename * rename "make grpc" * rename "abi bindings templates" * rename "abi bindings templates"
51 lines
1.0 KiB
Go
51 lines
1.0 KiB
Go
package ethapi
|
|
|
|
// This file stores proxy-objects for `internal` package
|
|
import (
|
|
"github.com/ledgerwatch/erigon/core"
|
|
"github.com/ledgerwatch/erigon/core/types"
|
|
"github.com/ledgerwatch/erigon/internal/ethapi"
|
|
)
|
|
|
|
// This package provides copy-paste and proxy objects to "internal/ethapi" package
|
|
|
|
func NewRevertError(result *core.ExecutionResult) *RevertError {
|
|
return &RevertError{ethapi.NewRevertError(result)}
|
|
}
|
|
|
|
type RevertError struct {
|
|
*ethapi.RevertError
|
|
}
|
|
|
|
type CallArgs struct {
|
|
*ethapi.CallArgs
|
|
}
|
|
|
|
type ExecutionResult struct {
|
|
*ethapi.ExecutionResult
|
|
}
|
|
|
|
//nolint
|
|
func RPCMarshalHeader(head *types.Header) map[string]interface{} {
|
|
return ethapi.RPCMarshalHeader(head)
|
|
}
|
|
|
|
//nolint
|
|
func RPCMarshalBlock(b *types.Block, inclTx bool, fullTx bool, additional map[string]interface{}) (map[string]interface{}, error) {
|
|
fields, err := ethapi.RPCMarshalBlock(b, inclTx, fullTx)
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
|
|
for k, v := range additional {
|
|
fields[k] = v
|
|
}
|
|
|
|
return fields, err
|
|
}
|
|
|
|
//nolint
|
|
type RPCTransaction struct {
|
|
*ethapi.RPCTransaction
|
|
}
|