Fix tests post specs-actors update

This commit is contained in:
Łukasz Magiera
2020-05-11 23:26:33 +02:00
parent 0704ac4636
commit ec83b9cf7c
3 changed files with 6 additions and 5 deletions
+2 -2
View File
@@ -195,7 +195,7 @@ func builder(t *testing.T, nFull int, storage []test.StorageMiner) ([]test.TestN
genaccs = append(genaccs, genesis.Actor{
Type: genesis.TAccount,
Balance: big.NewInt(5000000000000000000),
Balance: big.Mul(big.NewInt(50000), types.NewInt(build.FilecoinPrecision)),
Meta: (&genesis.AccountMeta{Owner: wk.Address}).ActorMeta(),
})
@@ -331,7 +331,7 @@ func mockSbBuilder(t *testing.T, nFull int, storage []test.StorageMiner) ([]test
genaccs = append(genaccs, genesis.Actor{
Type: genesis.TAccount,
Balance: big.NewInt(5000000000000000000),
Balance: big.Mul(big.NewInt(50000), types.NewInt(build.FilecoinPrecision)),
Meta: (&genesis.AccountMeta{Owner: wk.Address}).ActorMeta(),
})