-
Notifications
You must be signed in to change notification settings - Fork 58
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Flush out & fix retrieval bugs #525
Changes from all commits
e23e986
22b8bee
9173c93
3f91d79
4ee0600
33382ce
8bdcbc9
c66ba03
ddae6d9
d78e93a
890c685
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -106,9 +106,10 @@ func (rv *ProviderRequestValidator) validatePull(receiver peer.ID, proposal *ret | |
} | ||
|
||
pds := retrievalmarket.ProviderDealState{ | ||
DealProposal: *proposal, | ||
Receiver: receiver, | ||
LegacyProtocol: legacyProtocol, | ||
DealProposal: *proposal, | ||
Receiver: receiver, | ||
LegacyProtocol: legacyProtocol, | ||
CurrentInterval: proposal.PaymentInterval, | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Not setting the |
||
} | ||
|
||
status, err := rv.acceptDeal(&pds) | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nice catch 🎣