Skip to content

Commit

Permalink
Merge pull request #6295 from filecoin-project/fix/rename
Browse files Browse the repository at this point in the history
fix: rename DealAllocation to DealAllocated
  • Loading branch information
LinZexiao authored Mar 20, 2024
2 parents 2893b2a + e4a2745 commit 7ca52f4
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions venus-shared/types/market/storage.go
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ type ImportDataResult struct {
type DirectDealState int

const (
DealAllocation DirectDealState = iota + 1
DealAllocated DirectDealState = iota + 1
DealSealing
DealActive
DealExpired
Expand All @@ -163,8 +163,8 @@ const (

func (d DirectDealState) String() string {
switch d {
case DealAllocation:
return "DealAllocation"
case DealAllocated:
return "DealAllocated"
// case DealWaitForData:
// return "DealWaitForData"
case DealSealing:
Expand Down

0 comments on commit 7ca52f4

Please sign in to comment.