gagliardetto / solana-go

Go SDK library and RPC client for the Solana Blockchain
Apache License 2.0
878 stars 256 forks source link

dfuse-io logging module update to new URL #74

Open johnbailon opened 2 years ago

johnbailon commented 2 years ago

Since the module github.com/dfuse-io/logging now redirects to github.com/streamingfast/logging , when I do go get -u this error comes up:

go get: github.com/dfuse-io/logging@v0.0.0-20210109005628-b97a57253f70 updating to
        github.com/dfuse-io/logging@v0.0.0-20220511154537-ce373d264338: parsing go.mod:
        module declares its path as: github.com/streamingfast/logging
                but was required as: github.com/dfuse-io/logging

Any reason why this hasn't been fixed? Is the old logging module different from the new one at streamingfast?

johnbailon commented 2 years ago

BTW, temporarily fixed this by adding this line to go.mod, after go and before require: replace github.com/dfuse-io/logging => github.com/streamingfast/logging latest