Skip to content

Commit

Permalink
mpool: Cleanup pre-nv12 selection logic
Browse files Browse the repository at this point in the history
  • Loading branch information
magik6k committed Apr 30, 2021
1 parent eb10918 commit 04c71b2
Showing 1 changed file with 0 additions and 17 deletions.
17 changes: 0 additions & 17 deletions chain/messagepool/selection.go
Original file line number Diff line number Diff line change
Expand Up @@ -11,9 +11,7 @@ import (

"github.com/filecoin-project/go-address"
tbig "github.com/filecoin-project/go-state-types/big"
"github.com/filecoin-project/specs-actors/v3/actors/builtin"

"github.com/filecoin-project/lotus/api"
"github.com/filecoin-project/lotus/build"
"github.com/filecoin-project/lotus/chain/messagepool/gasguess"
"github.com/filecoin-project/lotus/chain/types"
Expand Down Expand Up @@ -700,17 +698,6 @@ func (*MessagePool) getGasPerf(gasReward *big.Int, gasLimit int64) float64 {
return r
}

func isMessageMute(m *types.Message, ts *types.TipSet) bool {
if api.RunningNodeType != api.NodeFull || ts.Height() > build.UpgradeActorsV4Height {
return false
}

if m.To == builtin.StoragePowerActorAddr {
return m.Method == builtin.MethodsPower.CreateMiner
}
return false
}

func (mp *MessagePool) createMessageChains(actor address.Address, mset map[uint64]*types.SignedMessage, baseFee types.BigInt, ts *types.TipSet) []*msgChain {
// collect all messages
msgs := make([]*types.SignedMessage, 0, len(mset))
Expand Down Expand Up @@ -772,10 +759,6 @@ func (mp *MessagePool) createMessageChains(actor address.Address, mset map[uint6
break
}

if isMessageMute(&m.Message, ts) {
break
}

balance = new(big.Int).Sub(balance, required)

value := m.Message.Value.Int
Expand Down

0 comments on commit 04c71b2

Please sign in to comment.