-
Notifications
You must be signed in to change notification settings - Fork 80
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
chore!: add error return params to tree interface #157
Conversation
Codecov Report
@@ Coverage Diff @@
## master #157 +/- ##
==========================================
- Coverage 82.28% 81.43% -0.85%
==========================================
Files 7 7
Lines 508 528 +20
==========================================
+ Hits 418 430 +12
- Misses 54 58 +4
- Partials 36 40 +4
Help us with your feedback. Take ten seconds to tell us how you rate us. Have a feature suggestion? Share it here. |
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! thanks for doing this, I think its a really good change!
only had a single comment, but otherwise LGTM 👍
Before
After
|
@@ -224,18 +234,6 @@ func computeRowProof(ds *dataSquare, x uint, y uint) ([]byte, [][]byte, uint, ui | |||
return merkleRoot, proof, uint(proofIndex), uint(numLeaves), nil | |||
} | |||
|
|||
func computeColProof(ds *dataSquare, x uint, y uint) ([]byte, [][]byte, uint, uint, error) { |
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.
removed an unused function
cc @Wondertan as this api change would have an effect on node |
It looks like @Wondertan doesn't have write permissions on this repo so his approval doesn't satisfy the 2 approvals requirement. I removed @MSevey 's review request b/c he's on parental leave so this needs @liamsi 's review. |
Maybe @cmwaters has write permission to this repo b/c he's a member of core/app |
Closes #156