Skip to content

Commit ef184f8

Browse files
Bump go-stellar-sdk to pick up XDR asset ordering fix (#218)
Picks up stellar/go-stellar-sdk#5974, which fixes Asset.LessThan to compare assets by their XDR encoding (raw issuer key) instead of strkey text, and switches the token_transfer processor to value-based asset equality so trustline revocation burns the correct liquidity pool leg. Also carries the required go-xdr bump to v0.0.0-20260806060815-dc590f17552a. Co-authored-by: Claude Fable 5 <noreply@anthropic.com>
1 parent 386d185 commit ef184f8

2 files changed

Lines changed: 6 additions & 6 deletions

File tree

go.mod

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ require (
3636
github.com/spf13/cobra v1.7.0
3737
github.com/spf13/pflag v1.0.5 // indirect
3838
github.com/spf13/viper v1.17.0
39-
github.com/stellar/go-xdr v0.0.0-20260529210834-0bf8f4956364 // indirect
39+
github.com/stellar/go-xdr v0.0.0-20260806060815-dc590f17552a // indirect
4040
github.com/stellar/throttled v2.2.3-0.20190823235211-89d75816f59d+incompatible
4141
github.com/stretchr/testify v1.11.1
4242
github.com/xdrpp/goxdr v0.1.1 // indirect
@@ -48,7 +48,7 @@ require (
4848
require (
4949
github.com/creachadair/jrpc2 v1.2.0
5050
github.com/fsouza/fake-gcs-server v1.49.2
51-
github.com/stellar/go-stellar-sdk v0.7.0
51+
github.com/stellar/go-stellar-sdk v0.7.2-0.20260806235222-d2f530f4327b
5252
)
5353

5454
require (

go.sum

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -429,10 +429,10 @@ github.com/spf13/pflag v1.0.5 h1:iy+VFUOCP1a+8yFto/drg2CJ5u0yRoB7fZw3DKv/JXA=
429429
github.com/spf13/pflag v1.0.5/go.mod h1:McXfInJRrz4CZXVZOBLb0bTZqETkiAhM9Iw0y3An2Bg=
430430
github.com/spf13/viper v1.17.0 h1:I5txKw7MJasPL/BrfkbA0Jyo/oELqVmux4pR/UxOMfI=
431431
github.com/spf13/viper v1.17.0/go.mod h1:BmMMMLQXSbcHK6KAOiFLz0l5JHrU89OdIRHvsk0+yVI=
432-
github.com/stellar/go-stellar-sdk v0.7.0 h1:nzEOPA+OdRKKKnBdDAZfgrs7s3cLVST8dC1umJ4vSaU=
433-
github.com/stellar/go-stellar-sdk v0.7.0/go.mod h1:IkcqcrE9UQi7n/1y+MxKB+7qzdjG1T2kGOD7Ss8dqjw=
434-
github.com/stellar/go-xdr v0.0.0-20260529210834-0bf8f4956364 h1:gOKrfuWdZ92LFlv0TAwgZ7OsWKeBsOMDlGLyFgduI1w=
435-
github.com/stellar/go-xdr v0.0.0-20260529210834-0bf8f4956364/go.mod h1:If+U9Z1W5xU97VrOgJandQT+2dN7/iOpkCrxBJEyF80=
432+
github.com/stellar/go-stellar-sdk v0.7.2-0.20260806235222-d2f530f4327b h1:naEoSBRo1pEl1YmSl7FE/yyMbDbajIaS77IM3DWrQvs=
433+
github.com/stellar/go-stellar-sdk v0.7.2-0.20260806235222-d2f530f4327b/go.mod h1:YTYl7/zFt7oIX5Y4WRgL+3d2upWQDLywlHunZ4fOxvc=
434+
github.com/stellar/go-xdr v0.0.0-20260806060815-dc590f17552a h1:40YIhQusSioBKDW5Tr+YdjoXphcVeu7eXUS2ibMQBTs=
435+
github.com/stellar/go-xdr v0.0.0-20260806060815-dc590f17552a/go.mod h1:If+U9Z1W5xU97VrOgJandQT+2dN7/iOpkCrxBJEyF80=
436436
github.com/stellar/throttled v2.2.3-0.20190823235211-89d75816f59d+incompatible h1:jMXXAcz6xTarGDQ4VtVbtERogcmDQw4RaE85Cr9CgoQ=
437437
github.com/stellar/throttled v2.2.3-0.20190823235211-89d75816f59d+incompatible/go.mod h1:7CJ23pXirXBJq45DqvO6clzTEGM/l1SfKrgrzLry8b4=
438438
github.com/stretchr/objx v0.1.0/go.mod h1:HFkY916IF+rwdDfMAkV7OtwuqBVzrE8GR6GFx+wExME=

0 commit comments

Comments
 (0)