2020-08-04 06:40:02 +00:00
|
|
|
package messagepool
|
|
|
|
|
|
|
|
import (
|
2020-08-06 22:40:25 +00:00
|
|
|
"context"
|
2020-08-05 06:46:48 +00:00
|
|
|
"math/big"
|
|
|
|
"sort"
|
2020-08-04 06:40:02 +00:00
|
|
|
"time"
|
|
|
|
|
2020-08-06 08:17:11 +00:00
|
|
|
"golang.org/x/xerrors"
|
2020-08-04 06:40:02 +00:00
|
|
|
|
2020-08-06 08:17:11 +00:00
|
|
|
"github.com/filecoin-project/go-address"
|
2020-08-04 06:40:02 +00:00
|
|
|
"github.com/filecoin-project/lotus/build"
|
|
|
|
"github.com/filecoin-project/lotus/chain/messagepool/gasguess"
|
|
|
|
"github.com/filecoin-project/lotus/chain/types"
|
2020-08-04 19:12:15 +00:00
|
|
|
"github.com/filecoin-project/lotus/chain/vm"
|
2020-08-05 06:46:48 +00:00
|
|
|
abig "github.com/filecoin-project/specs-actors/actors/abi/big"
|
2020-08-05 20:16:09 +00:00
|
|
|
"github.com/ipfs/go-cid"
|
2020-08-04 06:40:02 +00:00
|
|
|
)
|
|
|
|
|
2020-08-05 07:22:40 +00:00
|
|
|
var bigBlockGasLimit = big.NewInt(build.BlockGasLimit)
|
|
|
|
|
2020-08-04 06:40:02 +00:00
|
|
|
type msgChain struct {
|
|
|
|
msgs []*types.SignedMessage
|
2020-08-05 06:46:48 +00:00
|
|
|
gasReward *big.Int
|
|
|
|
gasLimit int64
|
2020-08-04 06:40:02 +00:00
|
|
|
gasPerf float64
|
|
|
|
valid bool
|
|
|
|
next *msgChain
|
|
|
|
}
|
|
|
|
|
2020-08-05 20:16:09 +00:00
|
|
|
func (mp *MessagePool) SelectMessages(ts *types.TipSet) ([]*types.SignedMessage, error) {
|
2020-08-04 06:40:02 +00:00
|
|
|
mp.curTsLk.Lock()
|
2020-08-07 00:48:53 +00:00
|
|
|
defer mp.curTsLk.Unlock()
|
2020-08-04 06:40:02 +00:00
|
|
|
|
|
|
|
mp.lk.Lock()
|
|
|
|
defer mp.lk.Unlock()
|
|
|
|
|
2020-08-07 00:48:53 +00:00
|
|
|
return mp.selectMessages(mp.curTs, ts)
|
2020-08-04 06:40:02 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 20:16:09 +00:00
|
|
|
func (mp *MessagePool) selectMessages(curTs, ts *types.TipSet) ([]*types.SignedMessage, error) {
|
2020-08-05 10:28:14 +00:00
|
|
|
start := time.Now()
|
|
|
|
|
2020-08-06 22:40:25 +00:00
|
|
|
baseFee, err := mp.api.ChainComputeBaseFee(context.TODO(), ts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("computing basefee: %w", err)
|
|
|
|
}
|
|
|
|
|
2020-08-05 20:16:09 +00:00
|
|
|
// 0. Load messages for the target tipset; if it is the same as the current tipset in the mpool
|
|
|
|
// then this is just the pending messages
|
|
|
|
pending, err := mp.getPendingMessages(curTs, ts)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
2020-08-07 07:33:00 +00:00
|
|
|
|
2020-08-06 22:54:58 +00:00
|
|
|
if len(pending) == 0 {
|
|
|
|
return nil, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// defer only here so if we have no pending messages we don't spam
|
|
|
|
defer func() {
|
|
|
|
log.Infof("message selection took %s", time.Since(start))
|
|
|
|
}()
|
2020-08-05 20:16:09 +00:00
|
|
|
|
2020-08-04 06:40:02 +00:00
|
|
|
// 1. Create a list of dependent message chains with maximal gas reward per limit consumed
|
|
|
|
var chains []*msgChain
|
2020-08-05 20:16:09 +00:00
|
|
|
for actor, mset := range pending {
|
2020-08-06 22:40:25 +00:00
|
|
|
next := mp.createMessageChains(actor, mset, baseFee, ts)
|
2020-08-04 06:40:02 +00:00
|
|
|
chains = append(chains, next...)
|
|
|
|
}
|
|
|
|
|
|
|
|
// 2. Sort the chains
|
2020-08-06 15:37:28 +00:00
|
|
|
sort.Slice(chains, func(i, j int) bool {
|
2020-08-04 06:40:02 +00:00
|
|
|
return chains[i].Before(chains[j])
|
|
|
|
})
|
2020-08-07 07:33:00 +00:00
|
|
|
|
2020-08-06 22:40:25 +00:00
|
|
|
if len(chains) != 0 && chains[0].gasPerf < 0 {
|
|
|
|
log.Warnw("all messages in mpool have negative has performance", "bestGasPerf", chains[0].gasPerf)
|
|
|
|
return nil, nil
|
|
|
|
}
|
2020-08-04 06:40:02 +00:00
|
|
|
|
|
|
|
// 3. Merge the head chains to produce the list of messages selected for inclusion, subject to
|
|
|
|
// the block gas limit.
|
|
|
|
result := make([]*types.SignedMessage, 0, mp.maxTxPoolSizeLo)
|
2020-08-05 06:46:48 +00:00
|
|
|
gasLimit := int64(build.BlockGasLimit)
|
|
|
|
minGas := int64(gasguess.MinGas)
|
2020-08-04 06:40:02 +00:00
|
|
|
last := len(chains)
|
|
|
|
for i, chain := range chains {
|
2020-08-04 17:24:23 +00:00
|
|
|
// does it fit in the block?
|
2020-08-07 02:09:01 +00:00
|
|
|
if chain.gasLimit <= gasLimit && chain.gasPerf > 0 {
|
2020-08-04 06:40:02 +00:00
|
|
|
gasLimit -= chain.gasLimit
|
|
|
|
result = append(result, chain.msgs...)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-08-07 07:33:00 +00:00
|
|
|
// did we run out of performing chains?
|
|
|
|
if chain.gasPerf <= 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2020-08-04 06:40:02 +00:00
|
|
|
// we can't fit this chain because of block gasLimit -- we are at the edge
|
|
|
|
last = i
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// 4. We have reached the edge of what we can fit wholesale; if we still have available gasLimit
|
|
|
|
// to pack some more chains, then trim the last chain and push it down.
|
|
|
|
// Trimming invalidates subsequent dependent chains so that they can't be selected as their
|
|
|
|
// dependency cannot be (fully) included.
|
|
|
|
// We do this in a loop because the blocker might have been inordinately large and we might
|
|
|
|
// have to do it multiple times to satisfy tail packing.
|
|
|
|
tailLoop:
|
|
|
|
for gasLimit >= minGas && last < len(chains) {
|
|
|
|
// trim
|
2020-08-06 22:40:25 +00:00
|
|
|
chains[last].Trim(gasLimit, mp, baseFee, ts)
|
2020-08-04 06:40:02 +00:00
|
|
|
|
2020-08-04 19:01:32 +00:00
|
|
|
// push down if it hasn't been invalidated
|
2020-08-05 06:46:48 +00:00
|
|
|
if chains[last].valid {
|
2020-08-04 17:24:23 +00:00
|
|
|
for i := last; i < len(chains)-1; i++ {
|
|
|
|
if chains[i].Before(chains[i+1]) {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
chains[i], chains[i+1] = chains[i+1], chains[i]
|
2020-08-04 06:40:02 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// select the next (valid and fitting) chain for inclusion
|
|
|
|
for i, chain := range chains[last:] {
|
|
|
|
// has the chain been invalidated
|
|
|
|
if !chain.valid {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
// does it fit in the bock?
|
2020-08-07 02:09:01 +00:00
|
|
|
if chain.gasLimit <= gasLimit && chain.gasPerf > 0 {
|
2020-08-04 06:40:02 +00:00
|
|
|
gasLimit -= chain.gasLimit
|
|
|
|
result = append(result, chain.msgs...)
|
|
|
|
continue
|
|
|
|
}
|
2020-08-07 07:33:00 +00:00
|
|
|
|
|
|
|
// if gasPerf <= 0 we have no more profitable chains
|
|
|
|
if chain.gasPerf <= 0 {
|
|
|
|
break tailLoop
|
|
|
|
}
|
|
|
|
|
2020-08-04 06:40:02 +00:00
|
|
|
// this chain needs to be trimmed
|
2020-08-06 23:01:45 +00:00
|
|
|
last += i
|
2020-08-04 06:40:02 +00:00
|
|
|
continue tailLoop
|
|
|
|
}
|
|
|
|
|
2020-08-04 19:01:32 +00:00
|
|
|
// the merge loop ended after processing all the chains and we probably still have gas to spare
|
|
|
|
// -- mark the end.
|
2020-08-04 06:40:02 +00:00
|
|
|
last = len(chains)
|
|
|
|
}
|
|
|
|
|
2020-08-05 20:16:09 +00:00
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mp *MessagePool) getPendingMessages(curTs, ts *types.TipSet) (map[address.Address]map[uint64]*types.SignedMessage, error) {
|
|
|
|
result := make(map[address.Address]map[uint64]*types.SignedMessage)
|
|
|
|
haveCids := make(map[cid.Cid]struct{})
|
|
|
|
|
|
|
|
// are we in sync?
|
|
|
|
inSync := false
|
|
|
|
if curTs.Height() == ts.Height() && curTs.Equals(ts) {
|
|
|
|
inSync = true
|
|
|
|
}
|
|
|
|
|
|
|
|
// first add our current pending messages
|
|
|
|
for a, mset := range mp.pending {
|
|
|
|
if inSync {
|
|
|
|
// no need to copy the map
|
|
|
|
result[a] = mset.msgs
|
|
|
|
} else {
|
|
|
|
// we need to copy the map to avoid clobbering it as we load more messages
|
|
|
|
msetCopy := make(map[uint64]*types.SignedMessage, len(mset.msgs))
|
|
|
|
for nonce, m := range mset.msgs {
|
|
|
|
msetCopy[nonce] = m
|
|
|
|
}
|
|
|
|
result[a] = msetCopy
|
|
|
|
|
|
|
|
// mark the messages as seen
|
|
|
|
for _, m := range mset.msgs {
|
|
|
|
haveCids[m.Cid()] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// we are in sync, that's the happy path
|
|
|
|
if inSync {
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// nope, we need to sync the tipsets
|
|
|
|
for {
|
|
|
|
if curTs.Height() == ts.Height() {
|
|
|
|
if curTs.Equals(ts) {
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// different blocks in tipsets -- we mark them as seen so that they are not included in
|
|
|
|
// in the message set we return, but *neither me (vyzo) nor why understand why*
|
|
|
|
// this code is also probably completely untested in production, so I am adding a big fat
|
|
|
|
// warning to revisit this case and sanity check this decision.
|
|
|
|
log.Warnf("mpool tipset has same height as target tipset but it's not equal; beware of dragons!")
|
|
|
|
|
|
|
|
have, err := mp.MessagesForBlocks(ts.Blocks())
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("error retrieving messages for tipset: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, m := range have {
|
|
|
|
haveCids[m.Cid()] = struct{}{}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
msgs, err := mp.MessagesForBlocks(ts.Blocks())
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("error retrieving messages for tipset: %w", err)
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, m := range msgs {
|
|
|
|
if _, have := haveCids[m.Cid()]; have {
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
haveCids[m.Cid()] = struct{}{}
|
|
|
|
mset, ok := result[m.Message.From]
|
|
|
|
if !ok {
|
|
|
|
mset = make(map[uint64]*types.SignedMessage)
|
|
|
|
result[m.Message.From] = mset
|
|
|
|
}
|
|
|
|
|
|
|
|
other, dupNonce := mset[m.Message.Nonce]
|
|
|
|
if dupNonce {
|
|
|
|
// duplicate nonce, selfishly keep the message with the highest GasPrice
|
|
|
|
// if the gas prices are the same, keep the one with the highest GasLimit
|
2020-08-06 21:08:42 +00:00
|
|
|
switch m.Message.GasPremium.Int.Cmp(other.Message.GasPremium.Int) {
|
2020-08-05 20:16:09 +00:00
|
|
|
case 0:
|
|
|
|
if m.Message.GasLimit > other.Message.GasLimit {
|
|
|
|
mset[m.Message.Nonce] = m
|
|
|
|
}
|
|
|
|
case 1:
|
|
|
|
mset[m.Message.Nonce] = m
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
mset[m.Message.Nonce] = m
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if curTs.Height() >= ts.Height() {
|
|
|
|
return result, nil
|
|
|
|
}
|
|
|
|
|
|
|
|
ts, err = mp.api.LoadTipSet(ts.Parents())
|
|
|
|
if err != nil {
|
|
|
|
return nil, xerrors.Errorf("error loading parent tipset: %w", err)
|
|
|
|
}
|
|
|
|
}
|
2020-08-04 06:40:02 +00:00
|
|
|
}
|
|
|
|
|
2020-08-06 22:40:25 +00:00
|
|
|
func (mp *MessagePool) getGasReward(msg *types.SignedMessage, baseFee types.BigInt, ts *types.TipSet) *big.Int {
|
2020-08-06 19:25:30 +00:00
|
|
|
gasReward := abig.Mul(msg.Message.GasPremium, types.NewInt(uint64(msg.Message.GasLimit)))
|
2020-08-06 22:40:25 +00:00
|
|
|
maxReward := types.BigSub(msg.Message.GasFeeCap, baseFee)
|
|
|
|
if types.BigCmp(maxReward, gasReward) < 0 {
|
|
|
|
gasReward = maxReward
|
|
|
|
}
|
2020-08-05 06:46:48 +00:00
|
|
|
return gasReward.Int
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mp *MessagePool) getGasPerf(gasReward *big.Int, gasLimit int64) float64 {
|
|
|
|
// gasPerf = gasReward * build.BlockGasLimit / gasLimit
|
2020-08-05 07:22:40 +00:00
|
|
|
a := new(big.Rat).SetInt(new(big.Int).Mul(gasReward, bigBlockGasLimit))
|
2020-08-05 06:46:48 +00:00
|
|
|
b := big.NewRat(1, gasLimit)
|
|
|
|
c := new(big.Rat).Mul(a, b)
|
|
|
|
r, _ := c.Float64()
|
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
2020-08-06 22:40:25 +00:00
|
|
|
func (mp *MessagePool) createMessageChains(actor address.Address, mset map[uint64]*types.SignedMessage, baseFee types.BigInt, ts *types.TipSet) []*msgChain {
|
2020-08-04 19:01:32 +00:00
|
|
|
// collect all messages
|
2020-08-05 20:16:09 +00:00
|
|
|
msgs := make([]*types.SignedMessage, 0, len(mset))
|
|
|
|
for _, m := range mset {
|
2020-08-04 19:01:32 +00:00
|
|
|
msgs = append(msgs, m)
|
|
|
|
}
|
|
|
|
|
|
|
|
// sort by nonce
|
2020-08-05 06:46:48 +00:00
|
|
|
sort.Slice(msgs, func(i, j int) bool {
|
|
|
|
return msgs[i].Message.Nonce < msgs[j].Message.Nonce
|
2020-08-04 19:01:32 +00:00
|
|
|
})
|
|
|
|
|
|
|
|
// sanity checks:
|
|
|
|
// - there can be no gaps in nonces, starting from the current actor nonce
|
|
|
|
// if there is a gap, drop messages after the gap, we can't include them
|
|
|
|
// - all messages must have minimum gas and the total gas for the candidate messages
|
|
|
|
// cannot exceed the block limit; drop all messages that exceed the limit
|
|
|
|
// - the total gasReward cannot exceed the actor's balance; drop all messages that exceed
|
|
|
|
// the balance
|
2020-08-06 14:07:37 +00:00
|
|
|
a, _ := mp.api.StateGetActor(actor, ts)
|
2020-08-04 19:01:32 +00:00
|
|
|
curNonce := a.Nonce
|
2020-08-05 06:46:48 +00:00
|
|
|
balance := a.Balance.Int
|
|
|
|
gasLimit := int64(0)
|
2020-08-04 19:01:32 +00:00
|
|
|
i := 0
|
2020-08-05 06:46:48 +00:00
|
|
|
rewards := make([]*big.Int, 0, len(msgs))
|
2020-08-04 19:01:32 +00:00
|
|
|
for i = 0; i < len(msgs); i++ {
|
|
|
|
m := msgs[i]
|
2020-08-05 20:16:09 +00:00
|
|
|
|
|
|
|
if m.Message.Nonce < curNonce {
|
|
|
|
log.Warnf("encountered message from actor %s with nonce (%d) less than the current nonce (%d)",
|
|
|
|
actor, m.Message.Nonce, curNonce)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-08-05 06:46:48 +00:00
|
|
|
if m.Message.Nonce != curNonce {
|
2020-08-04 19:01:32 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
curNonce++
|
|
|
|
|
2020-08-05 06:46:48 +00:00
|
|
|
minGas := vm.PricelistByEpoch(ts.Height()).OnChainMessage(m.ChainLength()).Total()
|
|
|
|
if m.Message.GasLimit < minGas {
|
2020-08-04 19:01:32 +00:00
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2020-08-05 06:46:48 +00:00
|
|
|
gasLimit += m.Message.GasLimit
|
2020-08-04 19:01:32 +00:00
|
|
|
if gasLimit > build.BlockGasLimit {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
2020-08-05 10:08:07 +00:00
|
|
|
required := m.Message.RequiredFunds().Int
|
|
|
|
if balance.Cmp(required) < 0 {
|
2020-08-04 19:01:32 +00:00
|
|
|
break
|
|
|
|
}
|
2020-08-05 10:08:07 +00:00
|
|
|
balance = new(big.Int).Sub(balance, required)
|
|
|
|
|
2020-08-06 17:49:31 +00:00
|
|
|
value := m.Message.Value.Int
|
|
|
|
if balance.Cmp(value) >= 0 {
|
|
|
|
// Note: we only account for the value if the balance doesn't drop below 0
|
|
|
|
// otherwise the message will fail and the miner can reap the gas rewards
|
|
|
|
balance = new(big.Int).Sub(balance, value)
|
|
|
|
}
|
|
|
|
|
2020-08-06 22:40:25 +00:00
|
|
|
gasReward := mp.getGasReward(m, baseFee, ts)
|
2020-08-04 19:01:32 +00:00
|
|
|
rewards = append(rewards, gasReward)
|
|
|
|
}
|
|
|
|
|
|
|
|
// check we have a sane set of messages to construct the chains
|
|
|
|
if i > 0 {
|
|
|
|
msgs = msgs[:i]
|
|
|
|
} else {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
// ok, now we can construct the chains using the messages we have
|
|
|
|
// invariant: each chain has a bigger gasPerf than the next -- otherwise they can be merged
|
|
|
|
// and increase the gasPerf of the first chain
|
|
|
|
// We do this in two passes:
|
|
|
|
// - in the first pass we create chains that aggreagate messages with non-decreasing gasPerf
|
|
|
|
// - in the second pass we merge chains to maintain the invariant.
|
|
|
|
var chains []*msgChain
|
|
|
|
var curChain *msgChain
|
|
|
|
|
|
|
|
newChain := func(m *types.SignedMessage, i int) *msgChain {
|
|
|
|
chain := new(msgChain)
|
|
|
|
chain.msgs = []*types.SignedMessage{m}
|
|
|
|
chain.gasReward = rewards[i]
|
2020-08-05 06:46:48 +00:00
|
|
|
chain.gasLimit = m.Message.GasLimit
|
2020-08-05 15:28:04 +00:00
|
|
|
chain.gasPerf = mp.getGasPerf(chain.gasReward, chain.gasLimit)
|
2020-08-04 19:01:32 +00:00
|
|
|
chain.valid = true
|
|
|
|
return chain
|
|
|
|
}
|
|
|
|
|
|
|
|
// create the individual chains
|
|
|
|
for i, m := range msgs {
|
|
|
|
if curChain == nil {
|
|
|
|
curChain = newChain(m, i)
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2020-08-05 06:46:48 +00:00
|
|
|
gasReward := new(big.Int).Add(curChain.gasReward, rewards[i])
|
|
|
|
gasLimit := curChain.gasLimit + m.Message.GasLimit
|
|
|
|
gasPerf := mp.getGasPerf(gasReward, gasLimit)
|
2020-08-04 19:01:32 +00:00
|
|
|
|
|
|
|
// try to add the message to the current chain -- if it decreases the gasPerf, then make a
|
|
|
|
// new chain
|
|
|
|
if gasPerf < curChain.gasPerf {
|
|
|
|
chains = append(chains, curChain)
|
|
|
|
curChain = newChain(m, i)
|
|
|
|
} else {
|
|
|
|
curChain.msgs = append(curChain.msgs, m)
|
|
|
|
curChain.gasReward = gasReward
|
|
|
|
curChain.gasLimit = gasLimit
|
|
|
|
curChain.gasPerf = gasPerf
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chains = append(chains, curChain)
|
|
|
|
|
|
|
|
// merge chains to maintain the invariant
|
|
|
|
for {
|
|
|
|
merged := 0
|
|
|
|
|
|
|
|
for i := len(chains) - 1; i > 0; i-- {
|
2020-08-06 15:37:28 +00:00
|
|
|
if chains[i].gasPerf >= chains[i-1].gasPerf {
|
2020-08-04 19:01:32 +00:00
|
|
|
chains[i-1].msgs = append(chains[i-1].msgs, chains[i].msgs...)
|
2020-08-05 06:46:48 +00:00
|
|
|
chains[i-1].gasReward = new(big.Int).Add(chains[i-1].gasReward, chains[i].gasReward)
|
2020-08-04 19:01:32 +00:00
|
|
|
chains[i-1].gasLimit += chains[i].gasLimit
|
2020-08-05 06:46:48 +00:00
|
|
|
chains[i-1].gasPerf = mp.getGasPerf(chains[i-1].gasReward, chains[i-1].gasLimit)
|
2020-08-04 19:01:32 +00:00
|
|
|
chains[i].valid = false
|
|
|
|
merged++
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if merged == 0 {
|
|
|
|
break
|
|
|
|
}
|
|
|
|
|
|
|
|
// drop invalidated chains
|
2020-08-05 06:46:48 +00:00
|
|
|
newChains := make([]*msgChain, 0, len(chains)-merged)
|
2020-08-04 19:01:32 +00:00
|
|
|
for _, c := range chains {
|
|
|
|
if c.valid {
|
|
|
|
newChains = append(newChains, c)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
chains = newChains
|
|
|
|
}
|
|
|
|
|
|
|
|
// link dependent chains
|
|
|
|
for i := 0; i < len(chains)-1; i++ {
|
|
|
|
chains[i].next = chains[i+1]
|
|
|
|
}
|
|
|
|
|
|
|
|
return chains
|
2020-08-04 06:40:02 +00:00
|
|
|
}
|
|
|
|
|
2020-08-05 07:34:47 +00:00
|
|
|
func (mc *msgChain) Before(other *msgChain) bool {
|
|
|
|
return mc.gasPerf > other.gasPerf ||
|
|
|
|
(mc.gasPerf == other.gasPerf && mc.gasReward.Cmp(other.gasReward) > 0)
|
2020-08-04 06:40:02 +00:00
|
|
|
}
|
|
|
|
|
2020-08-06 22:40:25 +00:00
|
|
|
func (mc *msgChain) Trim(gasLimit int64, mp *MessagePool, baseFee types.BigInt, ts *types.TipSet) {
|
2020-08-04 17:24:23 +00:00
|
|
|
i := len(mc.msgs) - 1
|
2020-08-07 07:33:00 +00:00
|
|
|
for i >= 0 && (mc.gasLimit > gasLimit || mc.gasPerf < 0) {
|
2020-08-05 06:46:48 +00:00
|
|
|
gasLimit -= mc.msgs[i].Message.GasLimit
|
2020-08-06 22:40:25 +00:00
|
|
|
gasReward := mp.getGasReward(mc.msgs[i], baseFee, ts)
|
2020-08-05 06:46:48 +00:00
|
|
|
mc.gasReward = new(big.Int).Sub(mc.gasReward, gasReward)
|
|
|
|
mc.gasLimit -= mc.msgs[i].Message.GasLimit
|
2020-08-04 17:24:23 +00:00
|
|
|
if mc.gasLimit > 0 {
|
2020-08-05 06:46:48 +00:00
|
|
|
mc.gasPerf = mp.getGasPerf(mc.gasReward, mc.gasLimit)
|
2020-08-04 17:24:23 +00:00
|
|
|
} else {
|
|
|
|
mc.gasPerf = 0
|
|
|
|
}
|
|
|
|
i--
|
|
|
|
}
|
|
|
|
|
|
|
|
if i < 0 {
|
|
|
|
mc.msgs = nil
|
|
|
|
mc.valid = false
|
|
|
|
} else {
|
2020-08-05 07:31:42 +00:00
|
|
|
mc.msgs = mc.msgs[:i+1]
|
2020-08-04 17:24:23 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if mc.next != nil {
|
|
|
|
mc.next.invalidate()
|
|
|
|
mc.next = nil
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func (mc *msgChain) invalidate() {
|
|
|
|
mc.valid = false
|
|
|
|
mc.msgs = nil
|
|
|
|
if mc.next != nil {
|
|
|
|
mc.next.invalidate()
|
|
|
|
mc.next = nil
|
|
|
|
}
|
2020-08-04 06:40:02 +00:00
|
|
|
}
|