diff --git a/chain/messagepool/selection_test.go b/chain/messagepool/selection_test.go index 2d17f7115..f22cd095d 100644 --- a/chain/messagepool/selection_test.go +++ b/chain/messagepool/selection_test.go @@ -23,6 +23,11 @@ import ( logging "github.com/ipfs/go-log" ) +func init() { + // bump this for the selection tests + MaxActorPendingMessages = 1000000 +} + func makeTestMessage(w *wallet.Wallet, from, to address.Address, nonce uint64, gasLimit int64, gasPrice uint64) *types.SignedMessage { msg := &types.Message{ From: from,