-
Notifications
You must be signed in to change notification settings - Fork 710
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Update avalanche ledger go package #3456
Merged
Merged
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -11,7 +11,7 @@ require ( | |
github.com/NYTimes/gziphandler v1.1.1 | ||
github.com/antithesishq/antithesis-sdk-go v0.3.8 | ||
github.com/ava-labs/coreth v0.13.8 | ||
github.com/ava-labs/ledger-avalanche/go v0.0.0-20240610153809-9c955cc90a95 | ||
github.com/ava-labs/ledger-avalanche/go v0.0.0-20241009183145-e6f90a8a1a60 | ||
github.com/btcsuite/btcd/btcutil v1.1.3 | ||
github.com/cockroachdb/pebble v0.0.0-20230928194634-aa077af62593 | ||
github.com/compose-spec/compose-go v1.20.2 | ||
|
@@ -43,7 +43,7 @@ require ( | |
github.com/spf13/cobra v1.5.0 | ||
github.com/spf13/pflag v1.0.5 | ||
github.com/spf13/viper v1.12.0 | ||
github.com/stretchr/testify v1.8.4 | ||
github.com/stretchr/testify v1.9.0 | ||
github.com/supranational/blst v0.3.11 | ||
github.com/syndtr/goleveldb v1.0.1-0.20220614013038-64ee5596c38a | ||
github.com/thepudds/fzgen v0.4.2 | ||
|
@@ -57,15 +57,15 @@ require ( | |
go.uber.org/goleak v1.3.0 | ||
go.uber.org/mock v0.4.0 | ||
go.uber.org/zap v1.26.0 | ||
golang.org/x/crypto v0.22.0 | ||
golang.org/x/crypto v0.26.0 | ||
golang.org/x/exp v0.0.0-20231127185646-65229373498e | ||
golang.org/x/net v0.24.0 | ||
golang.org/x/sync v0.7.0 | ||
golang.org/x/term v0.19.0 | ||
golang.org/x/net v0.28.0 | ||
golang.org/x/sync v0.8.0 | ||
golang.org/x/term v0.23.0 | ||
golang.org/x/time v0.3.0 | ||
gonum.org/v1/gonum v0.11.0 | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240123012728-ef4313101c80 | ||
google.golang.org/grpc v1.62.0 | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240827150818-7e3bb234dfed | ||
google.golang.org/grpc v1.66.0 | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Updating the gprc version is bold... Shouldn't be an issue... But would be good to QA this prior to release though. |
||
google.golang.org/protobuf v1.34.2 | ||
gopkg.in/natefinch/lumberjack.v2 v2.0.0 | ||
gopkg.in/yaml.v3 v3.0.1 | ||
|
@@ -83,7 +83,7 @@ require ( | |
github.com/bits-and-blooms/bitset v1.10.0 // indirect | ||
github.com/btcsuite/btcd/btcec/v2 v2.3.2 // indirect | ||
github.com/cenkalti/backoff/v4 v4.2.1 // indirect | ||
github.com/cespare/xxhash/v2 v2.2.0 // indirect | ||
github.com/cespare/xxhash/v2 v2.3.0 // indirect | ||
github.com/cockroachdb/errors v1.9.1 // indirect | ||
github.com/cockroachdb/logtags v0.0.0-20230118201751-21c54148d20b // indirect | ||
github.com/cockroachdb/redact v1.1.3 // indirect | ||
|
@@ -156,7 +156,7 @@ require ( | |
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/prometheus/procfs v0.10.1 // indirect | ||
github.com/rivo/uniseg v0.2.0 // indirect | ||
github.com/rogpeppe/go-internal v1.10.0 // indirect | ||
github.com/rogpeppe/go-internal v1.12.0 // indirect | ||
github.com/russross/blackfriday/v2 v2.1.0 // indirect | ||
github.com/sanity-io/litter v1.5.1 // indirect | ||
github.com/sirupsen/logrus v1.9.0 // indirect | ||
|
@@ -171,16 +171,15 @@ require ( | |
github.com/xrash/smetrics v0.0.0-20201216005158-039620a65673 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.2 // indirect | ||
github.com/zondax/hid v0.9.2 // indirect | ||
github.com/zondax/ledger-go v0.14.3 // indirect | ||
github.com/zondax/ledger-go v1.0.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.22.0 // indirect | ||
go.opentelemetry.io/proto/otlp v1.0.0 // indirect | ||
go.uber.org/multierr v1.11.0 // indirect | ||
golang.org/x/oauth2 v0.16.0 // indirect | ||
golang.org/x/sys v0.19.0 // indirect | ||
golang.org/x/text v0.14.0 // indirect | ||
golang.org/x/tools v0.17.0 // indirect | ||
google.golang.org/appengine v1.6.8 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240123012728-ef4313101c80 // indirect | ||
golang.org/x/oauth2 v0.21.0 // indirect | ||
golang.org/x/sys v0.24.0 // indirect | ||
golang.org/x/text v0.17.0 // indirect | ||
golang.org/x/tools v0.21.1-0.20240508182429-e35e4ccd0d2d // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240604185151-ef581f913117 // indirect | ||
gopkg.in/inf.v0 v0.9.1 // indirect | ||
gopkg.in/ini.v1 v1.67.0 // indirect | ||
gopkg.in/yaml.v2 v2.4.0 // indirect | ||
|
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Are there release versions for ledger-avalanche?
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.
I don't think so for the go wrapper