-
Notifications
You must be signed in to change notification settings - Fork 42
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
Add docstrings and improve readability to make the source code more welcoming to newcomers. #122
base: master
Are you sure you want to change the base?
Conversation
{ | ||
var address = (WhatIsAddress)b58; | ||
await TryFetchRedeemOrPubKey(address); | ||
await TryFetchRedeemOrPubKey(address); // Shouldn't the return value here be checked? |
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.
@NicolasDorier Can you shed some light on this please?
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.
No, TryFetchRedeemOrPubKey
is populating address
.
Will review it, that said, I advise you to use https://github.com/dgarage/NBxplorer instead of this project. This project is a full block explorer which is rarely actually needed. NBXplorer works on pruned node because it does not index everything. |
Please let me know your opinion on the kinds of changes I'm proposing here. If you're happy with my contribution, then you may leave the pull request open until I've added more changes.