mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-06 01:32:18 +00:00
39 lines
793 B
Go
39 lines
793 B
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
|
||
|
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)
|
||
|
}
|