We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
go-ethlibs/node/ipc.go
Line 18 in 61f7907
For example this code pointed to a yolov3x node never returns from BlockByNumber:
BlockByNumber
func main() { ctx := context.Background() url := "~/Library/Ethereum/yolo-v3/geth.ipc" client, err := node.NewClient(ctx, url) if err != nil { panic(err) } start := uint64(0x3ede) log.Printf("[WARN] start: %d", start) block, err := client.BlockByNumber(ctx, start, true) if err != nil { panic(err) } else { log.Printf("[INFO] block: %#v", *block) } }
Haven't full debugged it but my guess is either the scanner fails and we don't handle the error correctly or the scanner hangs.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
go-ethlibs/node/ipc.go
Line 18 in 61f7907
For example this code pointed to a yolov3x node never returns from
BlockByNumber
:Haven't full debugged it but my guess is either the scanner fails and we don't handle the error correctly or the scanner hangs.
The text was updated successfully, but these errors were encountered: