From 6abfbbddd5c6425add4517f42fb989e81f7e02fd Mon Sep 17 00:00:00 2001 From: vyzo Date: Wed, 26 Aug 2020 22:44:47 +0300 Subject: [PATCH] fix tests --- chain/messagepool/selection_test.go | 5 +++++ 1 file changed, 5 insertions(+) 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,