-
Notifications
You must be signed in to change notification settings - Fork 37
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
Breaking change: unifying provider interfaces, preparing network providers for extraction - step 1 #180
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/networkProvider
from erdjs components.When decoupling is done, no file within
src/networkProvider
should reference files from other packages. Then, we can extractnetworkProvider
to a separate repository and continue the interface reconciliation process (API & Proxy).