updating go-mod with latest updates#24
Merged
jonathanMweiss merged 2 commits intoschnorrfrom Oct 7, 2025
Merged
Conversation
There was a problem hiding this comment.
Pull Request Overview
This PR updates Go module dependencies to their latest versions, specifically updating multi-party-sig, tss-common, and tss-lib libraries. The changes address API modifications in these updated libraries, including changes to signature creation methods, field name corrections, protocol type updates, and the addition of gob type registrations.
- Updates multiple library dependencies to newer versions
- Adapts code to handle API changes in the updated TSS libraries
- Fixes spelling/naming inconsistencies (e.g., "AuxilaryData" to "AuxiliaryData")
Reviewed Changes
Copilot reviewed 14 out of 16 changed files in this pull request and generated no comments.
Show a summary per file
| File | Description |
|---|---|
| sdk/go.mod | Updates dependency versions for Ethereum, multi-party-sig, and other libraries |
| sdk/vaa/structs.go | Simplifies TSS signature creation by removing empty signature initialization |
| node/go.mod | Updates multi-party-sig, tss-common, tss-lib, and protobuf versions |
| node/pkg/tss/util.go | Corrects spelling from "AuxilaryData" to "AuxiliaryData" |
| node/pkg/tss/internal/cmd/dkg/server.go | Updates public key marshaling to use curve-specific method |
| node/pkg/tss/implementation_test.go | Updates protocol types and field names, fixes struct initialization |
| node/pkg/tss/implementation.go | Corrects field name from "AuxilaryData" to "AuxiliaryData" |
| node/pkg/tss/constants.go | Updates tracking ID size calculation and comments |
| node/pkg/tss/cnfgs.go | Adds gob type registrations for serialization |
| node/pkg/internal/testutils/testdata/tss5/*.json | Updates serialized TSS secrets data |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
yossigi
approved these changes
Oct 7, 2025
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
updating go mod with latest multi-party-sig,tss-common, tss-lib commits.
Small changes due to the API changes in these libraries.