prysm-pulse/sharding/collation.go

39 lines
793 B
Go
Raw Normal View History

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
expectedPeriodNumber *big.Int
periodStartPrevHash *common.Hash
parentCollationHash *common.Hash
txListRoot *common.Hash
coinbase *common.Address
postStateRoot *common.Hash
receiptsRoot *common.Hash
sig []byte
}
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)
}