mirror of
https://github.com/filecoin-project/lotus.git
synced 2026-03-13 08:32:30 +08:00
* chore: build: Update actor bundle to v17.0.0-dev1 * feat(api): implement miner creation deposit requirement (#13308) * feat(api): add `StateMinerCreationDeposit` API method for FIP-0077 * feat(miner): implement miner creation deposit calculation for FIP-0077 * feat(tests): add migration tests for miner creation deposit across NV26 and NV27 upgrades * chore(tests): remove multisig test functions * Update gen and docsgen-cli --------- Co-authored-by: TippyFlits <james.bluett@protocol.ai> Co-authored-by: 0x5459 <0x5459@protonmail.com> Co-authored-by: Steve Loeppky <biglep@filoz.org>
22 lines
480 B
Go
22 lines
480 B
Go
package itests
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/filecoin-project/lotus/itests/kit"
|
|
"github.com/filecoin-project/lotus/itests/multisig"
|
|
)
|
|
|
|
// TestMultisig does a basic test to exercise the multisig CLI commands
|
|
func TestMultisig(t *testing.T) {
|
|
|
|
kit.QuietMiningLogs()
|
|
|
|
blockTime := 5 * time.Millisecond
|
|
client, _, ens := kit.EnsembleMinimal(t, kit.MockProofs(), kit.ThroughRPC())
|
|
ens.InterconnectAll().BeginMining(blockTime)
|
|
|
|
multisig.RunMultisigTests(t, client)
|
|
}
|