Merge pull request #4153 from filecoin-project/asr/verbose-verification
Add verified status to api.DealInfo
This commit is contained in:
commit
e3269770d8
@ -530,6 +530,7 @@ type DealInfo struct {
|
|||||||
DealID abi.DealID
|
DealID abi.DealID
|
||||||
|
|
||||||
CreationTime time.Time
|
CreationTime time.Time
|
||||||
|
Verified bool
|
||||||
}
|
}
|
||||||
|
|
||||||
type MsgLookup struct {
|
type MsgLookup struct {
|
||||||
|
@ -956,7 +956,8 @@ Response:
|
|||||||
"PricePerEpoch": "0",
|
"PricePerEpoch": "0",
|
||||||
"Duration": 42,
|
"Duration": 42,
|
||||||
"DealID": 5432,
|
"DealID": 5432,
|
||||||
"CreationTime": "0001-01-01T00:00:00Z"
|
"CreationTime": "0001-01-01T00:00:00Z",
|
||||||
|
"Verified": true
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -992,7 +993,8 @@ Response:
|
|||||||
"PricePerEpoch": "0",
|
"PricePerEpoch": "0",
|
||||||
"Duration": 42,
|
"Duration": 42,
|
||||||
"DealID": 5432,
|
"DealID": 5432,
|
||||||
"CreationTime": "0001-01-01T00:00:00Z"
|
"CreationTime": "0001-01-01T00:00:00Z",
|
||||||
|
"Verified": true
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -200,6 +200,7 @@ func (a *API) ClientListDeals(ctx context.Context) ([]api.DealInfo, error) {
|
|||||||
Duration: uint64(v.Proposal.Duration()),
|
Duration: uint64(v.Proposal.Duration()),
|
||||||
DealID: v.DealID,
|
DealID: v.DealID,
|
||||||
CreationTime: v.CreationTime.Time(),
|
CreationTime: v.CreationTime.Time(),
|
||||||
|
Verified: v.Proposal.VerifiedDeal,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -223,6 +224,7 @@ func (a *API) ClientGetDealInfo(ctx context.Context, d cid.Cid) (*api.DealInfo,
|
|||||||
Duration: uint64(v.Proposal.Duration()),
|
Duration: uint64(v.Proposal.Duration()),
|
||||||
DealID: v.DealID,
|
DealID: v.DealID,
|
||||||
CreationTime: v.CreationTime.Time(),
|
CreationTime: v.CreationTime.Time(),
|
||||||
|
Verified: v.Proposal.VerifiedDeal,
|
||||||
}, nil
|
}, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -848,6 +850,7 @@ func newDealInfo(v storagemarket.ClientDeal) api.DealInfo {
|
|||||||
Duration: uint64(v.Proposal.Duration()),
|
Duration: uint64(v.Proposal.Duration()),
|
||||||
DealID: v.DealID,
|
DealID: v.DealID,
|
||||||
CreationTime: v.CreationTime.Time(),
|
CreationTime: v.CreationTime.Time(),
|
||||||
|
Verified: v.Proposal.VerifiedDeal,
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user