We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2893b2a + e4a2745 commit 7ca52f4Copy full SHA for 7ca52f4
venus-shared/types/market/storage.go
@@ -152,7 +152,7 @@ type ImportDataResult struct {
152
type DirectDealState int
153
154
const (
155
- DealAllocation DirectDealState = iota + 1
+ DealAllocated DirectDealState = iota + 1
156
DealSealing
157
DealActive
158
DealExpired
@@ -163,8 +163,8 @@ const (
163
164
func (d DirectDealState) String() string {
165
switch d {
166
- case DealAllocation:
167
- return "DealAllocation"
+ case DealAllocated:
+ return "DealAllocated"
168
// case DealWaitForData:
169
// return "DealWaitForData"
170
case DealSealing:
0 commit comments