-
Notifications
You must be signed in to change notification settings - Fork 16
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
feat(#major); add sol balance substream #114
base: master
Are you sure you want to change the base?
Conversation
Currently running into this issue: https://discord.com/channels/666749063386890256/982135810742697984/1038149086513205299 |
I believe I was able to workaround it by downgrading the version of the |
@robinbernon would you mind taking a look at the last |
No you are expected to be inputing a Vec type here. Vec is a generic placeholder for a list of bytes. You need to encode the struct to bytes in order to input it here. Try using the encode_to_vec() method to do this. (encode_to_vec() is a fn from the prost::Message trait which these structs all have derived already so you should just be able to call it directly without having to do any extra work here) |
Also, add this project to the makefile cmds in the root of the folder. It should be added to the build-all and run-all cmds. |
Add also add it to the shared workspace in the root Cargo.toml file |
thanks @robinbernon |
@@ -0,0 +1,4 @@ | |||
[toolchain] |
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.
Same comments on this sorta stuff as with the other PRs :)
#111
Get the SOL balance changes on each transaction!
Issues: