various symbol renames

This commit is contained in:
laser
2020-06-11 13:18:18 -07:00
parent 7587e6c08b
commit 36b327b57b
8 changed files with 26 additions and 25 deletions
+3 -3
View File
@@ -8,10 +8,10 @@ import (
type MinerAddress address.Address
type MinerID abi.ActorID
// IsAcceptingStorageDealsFunc is a function which reads from miner config to
// AcceptingStorageDealsFunc is a function which reads from miner config to
// determine if the user has disabled storage deals (or not).
type IsAcceptingStorageDealsFunc func() (bool, error)
type AcceptingStorageDealsConfigFunc func() (bool, error)
// SetAcceptingStorageDealsFunc is a function which is used to disable or enable
// storage deal acceptance.
type SetAcceptingStorageDealsFunc func(bool) error
type SetAcceptingStorageDealsConfigFunc func(bool) error