-
Couldn't load subscription status.
- Fork 44
Breaking change: unifying provider interfaces, preparing network providers for extraction - step 1 #180
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
Conversation
| return ( | ||
| this.status == "received" || | ||
| this.status == "pending" || | ||
| this.status == "partially-executed" |
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.
can we have status partially-executed? I cannot find it here:
https://github.com/ElrondNetwork/elrond-go-core/blob/main/data/transaction/status.go
and I can only find it in a unit test on elrond-proxy-go
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.
Indeed, old, deprecated status 🙏
Breaking change: unifying provider interfaces, preparing network providers for extraction - step 1
First part of decoupling
src/networkProviderfrom erdjs components.When decoupling is done, no file within
src/networkProvidershould reference files from other packages. Then, we can extractnetworkProviderto a separate repository and continue the interface reconciliation process (API & Proxy).