diff --git a/cmd/soroban-rpc/internal/methods/get_ledgers.go b/cmd/soroban-rpc/internal/methods/get_ledgers.go index 3fc8b26d..da4ceea8 100644 --- a/cmd/soroban-rpc/internal/methods/get_ledgers.go +++ b/cmd/soroban-rpc/internal/methods/get_ledgers.go @@ -9,6 +9,7 @@ import ( "strconv" "github.com/creachadair/jrpc2" + "github.com/stellar/go/xdr" "github.com/stellar/soroban-rpc/cmd/soroban-rpc/internal/db" diff --git a/cmd/soroban-rpc/internal/methods/get_ledgers_test.go b/cmd/soroban-rpc/internal/methods/get_ledgers_test.go index 33e2e6ed..45f161da 100644 --- a/cmd/soroban-rpc/internal/methods/get_ledgers_test.go +++ b/cmd/soroban-rpc/internal/methods/get_ledgers_test.go @@ -5,11 +5,12 @@ import ( "encoding/json" "testing" - "github.com/stellar/go/support/log" - "github.com/stellar/go/xdr" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" + "github.com/stellar/go/support/log" + "github.com/stellar/go/xdr" + "github.com/stellar/soroban-rpc/cmd/soroban-rpc/internal/daemon/interfaces" "github.com/stellar/soroban-rpc/cmd/soroban-rpc/internal/db" )