Set devnet params
This commit is contained in:
parent
3f021a0aa4
commit
5b90121577
@ -122,8 +122,8 @@ type FullNodeStruct struct {
|
|||||||
PaychVoucherCheckValid func(context.Context, address.Address, *types.SignedVoucher) error `perm:"read"`
|
PaychVoucherCheckValid func(context.Context, address.Address, *types.SignedVoucher) error `perm:"read"`
|
||||||
PaychVoucherCheckSpendable func(context.Context, address.Address, *types.SignedVoucher, []byte, []byte) (bool, error) `perm:"read"`
|
PaychVoucherCheckSpendable func(context.Context, address.Address, *types.SignedVoucher, []byte, []byte) (bool, error) `perm:"read"`
|
||||||
PaychVoucherAdd func(context.Context, address.Address, *types.SignedVoucher, []byte, types.BigInt) (types.BigInt, error) `perm:"write"`
|
PaychVoucherAdd func(context.Context, address.Address, *types.SignedVoucher, []byte, types.BigInt) (types.BigInt, error) `perm:"write"`
|
||||||
PaychVoucherCreate func(context.Context, address.Address, types.BigInt, uint64) (*types.SignedVoucher, error) `perm:"sign"`
|
PaychVoucherCreate func(context.Context, address.Address, types.BigInt, uint64) (*types.SignedVoucher, error) `perm:"sign"`
|
||||||
PaychVoucherList func(context.Context, address.Address) ([]*types.SignedVoucher, error) `perm:"write"`
|
PaychVoucherList func(context.Context, address.Address) ([]*types.SignedVoucher, error) `perm:"write"`
|
||||||
PaychVoucherSubmit func(context.Context, address.Address, *types.SignedVoucher) (cid.Cid, error) `perm:"sign"`
|
PaychVoucherSubmit func(context.Context, address.Address, *types.SignedVoucher) (cid.Cid, error) `perm:"sign"`
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -3,16 +3,14 @@
|
|||||||
package build
|
package build
|
||||||
|
|
||||||
var SectorSizes = []uint64{
|
var SectorSizes = []uint64{
|
||||||
16 << 20,
|
|
||||||
256 << 20,
|
|
||||||
1 << 30,
|
1 << 30,
|
||||||
32 << 30,
|
32 << 30,
|
||||||
}
|
}
|
||||||
|
|
||||||
// Seconds
|
// Seconds
|
||||||
const BlockDelay = 30
|
const BlockDelay = 45
|
||||||
|
|
||||||
const PropagationDelay = 5
|
const PropagationDelay = 6
|
||||||
|
|
||||||
// FallbackPoStDelay is the number of epochs the miner needs to wait after
|
// FallbackPoStDelay is the number of epochs the miner needs to wait after
|
||||||
// ElectionPeriodStart before starting fallback post computation
|
// ElectionPeriodStart before starting fallback post computation
|
||||||
|
@ -77,7 +77,6 @@ const CollateralPrecision = 1000
|
|||||||
const TotalFilecoin = 2_000_000_000
|
const TotalFilecoin = 2_000_000_000
|
||||||
const MiningRewardTotal = 1_400_000_000
|
const MiningRewardTotal = 1_400_000_000
|
||||||
|
|
||||||
|
|
||||||
const InitialRewardStr = "153856861913558700202"
|
const InitialRewardStr = "153856861913558700202"
|
||||||
|
|
||||||
var InitialReward *big.Int
|
var InitialReward *big.Int
|
||||||
|
Loading…
Reference in New Issue
Block a user