From df13fc3e40fa925455e8773adcd17f790001a141 Mon Sep 17 00:00:00 2001 From: Aayush Rajasekaran Date: Tue, 28 Jul 2020 20:03:20 -0400 Subject: [PATCH] Add MinDealDuration to testground params --- build/params_testground.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/build/params_testground.go b/build/params_testground.go index ab7c16436..a121e17af 100644 --- a/build/params_testground.go +++ b/build/params_testground.go @@ -59,4 +59,7 @@ var ( v = v.Mul(v, big.NewInt(int64(FilecoinPrecision))) return v }() + // Actor consts + // TODO: Pull from actors when its made not private + MinDealDuration = abi.ChainEpoch(180 * builtin.EpochsInDay) )