MacBobby Chibuzor
MacBobby Chibuzor
I have an idea on how to refactor both pages. I will make changes via a fork and send a PR.
I finished making the changes. I made two mistakes: - not checking out to a new branch after cloning - attempting a merge (ignorant of the PR procedure 😞 )
Yes. I am trying to finish up with the work that brought me to the repository, after that, I'll fix the issues. Thanks for reminding me.
@tigrannajaryan I changed the wording to simply "export data"; would that be sufficient?
Hi @JakeHartnell, I have just added this in my fork, and will make a PR in a moment. However, I want to verify that there will be need to: -...
> Needs a few things: > > * Fix the build > * Add tests for `active_threshold` and being able to update it > * Make sure CI passes >...
Perhaps this? ```Go var match mux.RouteMatch var handler http.Handler req := &http.Request{} req.URL = &url.URL{Path: "/post"} req.Method = "POST" if builder.router.Match(req, &match) { // Get the matched handler along with...
Mine also doesn't work. I use a macOS. I have tried different RELEASE versions. I have replicated it on another computer, terminals. etc., and I got the same issue. What...
Here is how you do it @BillInUK: ```go package main import ( "context" "fmt" "github.com/gagliardetto/solana-go" "github.com/gagliardetto/solana-go/rpc" ) func main() { rpcClient := rpc.New(rpc.MainNetBeta_RPC) tokenAccountPubKey := solana.MustPublicKeyFromBase58("3XRNhFEXkV7itJEJMDBN8iRHBgwhgk83XB5K3s3re3Ew") // Fetch account info...
Thanks for going through the Notebook. I will be making the changes now. I was streaming on YT, teaching my community how to contribute to open source during Hacktoberfest, and...