The core protocol of WoopChain
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.
woop/rpc/v1/block.go

69 lines
2.0 KiB

package v1
import (
8 months ago
"github.com/woop-chain/woop/core/types"
rpc_common "github.com/woop-chain/woop/rpc/common"
"github.com/pkg/errors"
)
// BlockFactory is the factory for v1 rpc block
type BlockFactory struct {
provider rpc_common.BlockDataProvider
}
// NewBlockFactory return the block factory with the given provider
func NewBlockFactory(provider rpc_common.BlockDataProvider) *BlockFactory {
return &BlockFactory{provider}
}
// NewBlock converts the given block to the RPC output which depends on fullTx. If inclTx is true transactions are
// returned. When fullTx is true the returned block contains full transaction details, otherwise it will only contain
// transaction hashes.
func (fac *BlockFactory) NewBlock(b *types.Block, args *rpc_common.BlockArgs) (interface{}, error) {
if args.FullTx {
return fac.newBlockWithFullTx(b, args)
}
return fac.newBlockWithTxHash(b, args)
}
func (fac *BlockFactory) newBlockWithTxHash(b *types.Block, args *rpc_common.BlockArgs) (*BlockWithTxHash, error) {
blk := blockWithTxHashFromBlock(b)
blk.Miner = fac.provider.GetLeader(b)
if args.InclStaking {
blk.StakingTxs = fac.provider.GetStakingTxHashes(b)
}
if args.WithSigners {
signers, err := fac.provider.GetSigners(b)
if err != nil {
return nil, errors.Wrap(err, "GetSigners")
}
blk.Signers = signers
}
return blk, nil
}
func (fac *BlockFactory) newBlockWithFullTx(b *types.Block, args *rpc_common.BlockArgs) (*BlockWithFullTx, error) {
blk, err := blockWithFullTxFromBlock(b)
if err != nil {
return nil, errors.Wrap(err, "blockWithFullTxFromBlock")
}
blk.Miner = fac.provider.GetLeader(b)
if args.InclStaking {
txs, err := fac.provider.GetStakingTxs(b)
if err != nil {
return nil, errors.Wrap(err, "GetStakingTxs")
}
blk.StakingTxs = txs.([]*StakingTransaction)
}
if args.WithSigners {
signers, err := fac.provider.GetSigners(b)
if err != nil {
return nil, errors.Wrap(err, "GetSigners")
}
blk.Signers = signers
}
return blk, nil
}