mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 09:42:19 +00:00
495f6ea312
Former-commit-id: abb7faaf16e79105b301f412f293776aef1352dd [formerly d59d6bea68aa80bb0aa79e3bf6d23de1d6596f8f] Former-commit-id: b4b2e2a45661b9268117b91b8ad8c0386611ab93
48 lines
1.5 KiB
Go
48 lines
1.5 KiB
Go
package sharding
|
|
|
|
import (
|
|
"math"
|
|
"math/big"
|
|
|
|
"github.com/ethereum/go-ethereum/common"
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
)
|
|
|
|
type Collation struct {
|
|
header *CollationHeader
|
|
transactions []*types.Transaction
|
|
}
|
|
|
|
type CollationHeader struct {
|
|
shardID *big.Int //the shard ID of the shard
|
|
chunkRoot *common.Hash //the root of the chunk tree which identifies collation body
|
|
period *big.Int //the period number in which collation to be included
|
|
proposerAddress *common.Address //address of the collation proposer
|
|
proposerSignature []byte //the proposer's signature for calculating collation hash
|
|
}
|
|
|
|
func (c *Collation) Header() *CollationHeader { return c.header }
|
|
func (c *Collation) Transactions() []*types.Transaction { return c.transactions }
|
|
func (c *Collation) ShardID() *big.Int { return c.header.shardID }
|
|
func (c *Collation) Period() *big.Int { return c.header.period }
|
|
func (c *Collation) ProposerAddress() *common.Address { return c.header.proposerAddress }
|
|
|
|
func (c *Collation) SetHeader(h *CollationHeader) { c.header = h }
|
|
|
|
func (c *Collation) AddTransaction(tx *types.Transaction) {
|
|
// TODO: Check transaction does not exceed gas limit
|
|
c.transactions = append(c.transactions, tx)
|
|
}
|
|
|
|
func (c *Collation) GasUsed() *big.Int {
|
|
g := uint64(0)
|
|
for _, tx := range c.transactions {
|
|
if g > math.MaxUint64-(g+tx.Gas()) {
|
|
g = math.MaxUint64
|
|
break
|
|
}
|
|
g += tx.Gas()
|
|
}
|
|
return big.NewInt(0).SetUint64(g)
|
|
}
|