newRPCPendingTransaction returns a pending transaction that will serialize to the RPC representation
(tx *types.Transaction)
| 1054 | |
| 1055 | // newRPCPendingTransaction returns a pending transaction that will serialize to the RPC representation |
| 1056 | func newRPCPendingTransaction(tx *types.Transaction) *RPCTransaction { |
| 1057 | return newRPCTransaction(tx, common.Hash{}, 0, 0) |
| 1058 | } |
| 1059 | |
| 1060 | // newRPCTransactionFromBlockIndex returns a transaction that will serialize to the RPC representation. |
| 1061 | func newRPCTransactionFromBlockIndex(b *types.Block, index uint64) *RPCTransaction { |
no test coverage detected