Skip to content

Commit 9974c2d

Browse files
authored
fix: update lifi validation library version (#120)
<!--- Provide a general summary of your changes in the Title above --> Fixes issue with expired exclusivity being checked. ## Description <!--- Describe your changes in detail --> ## Related Issue Or Context <!--- If suggesting a new feature or change, please discuss it in an issue first --> <!--- If fixing a bug, there should be an issue describing it with steps to reproduce --> <!--- Otherwise, describe context and motivation for change herre --> Closes: #<issue> ## How Has This Been Tested? Testing details. <!--- Please describe in detail how you tested your changes. --> <!--- Include details of your testing environment, and the tests you ran to --> <!--- see how your change affects other areas of the code, etc. --> ## Types of changes <!--- What types of changes does your code introduce? Put an `x` in all the boxes that apply: --> - [ ] Bug fix (non-breaking change which fixes an issue) - [ ] New feature (non-breaking change which adds functionality) - [ ] Breaking change (fix or feature that would cause existing functionality to change) - [ ] Documentation ## Checklist: <!--- Go over all the following points, and put an `x` in all the boxes that apply. --> <!--- If you're unsure about any of these, don't hesitate to ask. We're here to help! --> - [ ] I have commented my code, particularly in hard-to-understand areas. - [ ] I have ensured that all acceptance criteria (or expected behavior) from issue are met - [ ] I have updated the documentation locally and in docs. - [ ] I have added tests to cover my changes. - [ ] I have ensured that all the checks are passing and green, I've signed the CLA bot
1 parent c7dabd1 commit 9974c2d

File tree

4 files changed

+25
-7
lines changed

4 files changed

+25
-7
lines changed

.github/workflows/mocks.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ jobs:
2222
with:
2323
go-version: "^1.23"
2424

25-
- run: go install go.uber.org/mock/mockgen@v0.5
25+
- run: go install go.uber.org/mock/mockgen@v0.6
2626

2727
- run: make genmocks
2828

go.mod

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ require (
2121
github.com/rs/zerolog v1.25.0
2222
github.com/spf13/cobra v1.8.1
2323
github.com/spf13/viper v1.9.0
24-
github.com/sprintertech/lifi-solver v1.0.5
25-
github.com/sprintertech/solver-config/go v0.0.0-20251113121131-2347b1712859
24+
github.com/sprintertech/lifi-solver v1.1.4-0.20251216105438-52c952a498e2
25+
github.com/sprintertech/solver-config/go v0.0.0-20251210120259-9f98635b2dfd
2626
github.com/stretchr/testify v1.10.0
2727
github.com/sygmaprotocol/sygma-core v0.0.0-20250304150334-bd39ac4f7b82
2828
go.opentelemetry.io/otel v1.16.0
@@ -72,6 +72,7 @@ require (
7272
github.com/google/uuid v1.6.0 // indirect
7373
github.com/grpc-ecosystem/grpc-gateway/v2 v2.7.0 // indirect
7474
github.com/hashicorp/go-cleanhttp v0.5.2 // indirect
75+
github.com/hashicorp/golang-lru/v2 v2.0.7 // indirect
7576
github.com/holiman/bloomfilter/v2 v2.0.3 // indirect
7677
github.com/holiman/uint256 v1.3.2 // indirect
7778
github.com/mattn/go-runewidth v0.0.13 // indirect

go.sum

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -512,6 +512,8 @@ github.com/hashicorp/go-uuid v1.0.1/go.mod h1:6SBZvOh/SIDV7/2o3Jml5SYk/TvGqwFJ/b
512512
github.com/hashicorp/golang-lru v0.5.0/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
513513
github.com/hashicorp/golang-lru v0.5.1/go.mod h1:/m3WP610KZHVQ1SGc6re/UDhFvYD7pJ4Ao+sR/qLZy8=
514514
github.com/hashicorp/golang-lru v0.5.5-0.20210104140557-80c98217689d/go.mod h1:iADmTwqILo4mZ8BN3D2Q6+9jd8WM5uGBxy+E8yxSoD4=
515+
github.com/hashicorp/golang-lru/v2 v2.0.7 h1:a+bsQ5rvGLjzHuww6tVxozPZFVghXaHOwFs4luLUK2k=
516+
github.com/hashicorp/golang-lru/v2 v2.0.7/go.mod h1:QeFd9opnmA6QUJc5vARoKUSoFhyfM2/ZepoAG6RGpeM=
515517
github.com/hashicorp/hcl v1.0.0 h1:0Anlzjpi4vEasTeNFn2mLJgTSwt0+6sfsiTG8qcWGx4=
516518
github.com/hashicorp/hcl v1.0.0/go.mod h1:E5yfLk+7swimpb2L/Alb/PJmXilQ/rhwaUYs4T20WEQ=
517519
github.com/hashicorp/logutils v1.0.0/go.mod h1:QIAnNjmIWmVIIkWDTG1z5v++HQmx9WQRO+LraFDTW64=
@@ -950,10 +952,10 @@ github.com/spf13/pflag v1.0.6 h1:jFzHGLGAlb3ruxLB8MhbI6A8+AQX/2eW4qeyNZXNp2o=
950952
github.com/spf13/pflag v1.0.6/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
951953
github.com/spf13/viper v1.9.0 h1:yR6EXjTp0y0cLN8OZg1CRZmOBdI88UcGkhgyJhu6nZk=
952954
github.com/spf13/viper v1.9.0/go.mod h1:+i6ajR7OX2XaiBkrcZJFK21htRk7eDeLg7+O6bhUPP4=
953-
github.com/sprintertech/lifi-solver v1.0.5 h1:Qc4E/q8/xfXV8MZPcHIv48tEJBGt23P9pqRy4a2KGMg=
954-
github.com/sprintertech/lifi-solver v1.0.5/go.mod h1:d5/fytopwudQUE9ojF54XwtqLRFD3JbpBlri7ygb3ng=
955-
github.com/sprintertech/solver-config/go v0.0.0-20251113121131-2347b1712859 h1:PKQlVVUTPih7WqorHHYzJHON3LlaqAQ4S7fLuioxTgc=
956-
github.com/sprintertech/solver-config/go v0.0.0-20251113121131-2347b1712859/go.mod h1:MrIGW6M815PSYKtWSeOd1Z7eiSeOIk/uA/6E2PhlQVQ=
955+
github.com/sprintertech/lifi-solver v1.1.4-0.20251216105438-52c952a498e2 h1:NJP6kfbXjpOSd5a5LLJSDrN4Ea+cIpyPvqXEQ9UONps=
956+
github.com/sprintertech/lifi-solver v1.1.4-0.20251216105438-52c952a498e2/go.mod h1:gWq6P8ajreJGz+oyh9PtoknQecBSvTI+EM/gowq19XA=
957+
github.com/sprintertech/solver-config/go v0.0.0-20251210120259-9f98635b2dfd h1:hWqUgnuGWYMYLWk3bE8uz2Uwq+hVicBP+FlGs86Smig=
958+
github.com/sprintertech/solver-config/go v0.0.0-20251210120259-9f98635b2dfd/go.mod h1:MrIGW6M815PSYKtWSeOd1Z7eiSeOIk/uA/6E2PhlQVQ=
957959
github.com/status-im/keycard-go v0.0.0-20190316090335-8537d3370df4/go.mod h1:RZLeN1LMWmRsyYjvAu+I6Dm9QmlDaIIt+Y+4Kd7Tp+Q=
958960
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=
959961
github.com/stretchr/objx v0.1.1/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

tss/mock/coordinator.go

Lines changed: 15 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)