Skip to content

Commit a6a6b6b

Browse files
committed
Minimal fixes to get tests passing
1 parent d140597 commit a6a6b6b

40 files changed

+85
-146
lines changed

go.mod

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,6 @@ require (
3636
github.com/sirupsen/logrus v1.9.3
3737
github.com/spf13/cobra v1.10.1
3838
github.com/spf13/viper v1.21.0
39-
github.com/stellar/go v0.0.0-20240924182550-69667b25baf4
4039
github.com/stellar/go-stellar-sdk v0.0.0-20251125023429-4c8c6f69a699
4140
github.com/stellar/stellar-rpc v0.9.6-0.20250130160539-be7702aa01ba
4241
github.com/stretchr/testify v1.11.1
@@ -95,6 +94,7 @@ require (
9594
github.com/spf13/afero v1.15.0 // indirect
9695
github.com/spf13/cast v1.10.0 // indirect
9796
github.com/spf13/pflag v1.0.10 // indirect
97+
github.com/stellar/go v0.0.0-20240924182550-69667b25baf4 // indirect
9898
github.com/stellar/go-xdr v0.0.0-20231122183749-b53fb00bcac2 // indirect
9999
github.com/stretchr/objx v0.5.2 // indirect
100100
github.com/subosito/gotenv v1.6.0 // indirect

internal/data/embedded_wallet.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import (
1010
"time"
1111

1212
"github.com/lib/pq"
13-
"github.com/stellar/go/strkey"
13+
"github.com/stellar/go-stellar-sdk/strkey"
1414

1515
"github.com/stellar/stellar-disbursement-platform-backend/db"
1616
"github.com/stellar/stellar-disbursement-platform-backend/internal/utils"

internal/dependencyinjection/embedded_wallet_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/stellar/go/support/log"
7+
"github.com/stellar/go-stellar-sdk/support/log"
88

99
"github.com/stellar/stellar-disbursement-platform-backend/internal/data"
1010
"github.com/stellar/stellar-disbursement-platform-backend/internal/services"

internal/dependencyinjection/rpc_client.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ import (
44
"context"
55
"fmt"
66

7-
"github.com/stellar/go/support/log"
7+
"github.com/stellar/go-stellar-sdk/support/log"
88

99
"github.com/stellar/stellar-disbursement-platform-backend/internal/stellar"
1010
)

internal/dependencyinjection/webauthn_service.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/stellar/go/support/log"
8+
"github.com/stellar/go-stellar-sdk/support/log"
99

1010
"github.com/stellar/stellar-disbursement-platform-backend/db"
1111
"github.com/stellar/stellar-disbursement-platform-backend/internal/data"

internal/scheduler/jobs/sponsored_transaction_from_submitter_job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/stellar/go/support/log"
8+
"github.com/stellar/go-stellar-sdk/support/log"
99

1010
"github.com/stellar/stellar-disbursement-platform-backend/db"
1111
"github.com/stellar/stellar-disbursement-platform-backend/internal/data"

internal/scheduler/jobs/sponsored_transactions_to_submitter_job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/stellar/go/support/log"
8+
"github.com/stellar/go-stellar-sdk/support/log"
99

1010
"github.com/stellar/stellar-disbursement-platform-backend/db"
1111
"github.com/stellar/stellar-disbursement-platform-backend/internal/data"

internal/scheduler/jobs/wallet_creation_from_submitter_job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/stellar/go/support/log"
8+
"github.com/stellar/go-stellar-sdk/support/log"
99

1010
"github.com/stellar/stellar-disbursement-platform-backend/db"
1111
"github.com/stellar/stellar-disbursement-platform-backend/internal/data"

internal/scheduler/jobs/wallet_creation_to_submitter_job.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import (
55
"fmt"
66
"time"
77

8-
"github.com/stellar/go/support/log"
8+
"github.com/stellar/go-stellar-sdk/support/log"
99

1010
"github.com/stellar/stellar-disbursement-platform-backend/db"
1111
"github.com/stellar/stellar-disbursement-platform-backend/internal/data"

internal/serve/httphandler/passkey_handler.go

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ import (
88
"time"
99

1010
"github.com/go-webauthn/webauthn/protocol"
11-
"github.com/stellar/go/support/http/httpdecode"
12-
"github.com/stellar/go/support/render/httpjson"
11+
"github.com/stellar/go-stellar-sdk/support/http/httpdecode"
12+
"github.com/stellar/go-stellar-sdk/support/render/httpjson"
1313

1414
"github.com/stellar/stellar-disbursement-platform-backend/internal/data"
1515
"github.com/stellar/stellar-disbursement-platform-backend/internal/serve/httperror"

0 commit comments

Comments
 (0)