diff --git a/server/internal/infrastructure/ocean-wallet/account.go b/server/internal/infrastructure/ocean-wallet/account.go index 26a00cf..aa60716 100644 --- a/server/internal/infrastructure/ocean-wallet/account.go +++ b/server/internal/infrastructure/ocean-wallet/account.go @@ -39,9 +39,6 @@ func (s *service) ListConnectorUtxos( for _, utxo := range res.GetSpendableUtxos().GetUtxos() { utxos = append(utxos, utxo) } - for _, utxo := range res.GetLockedUtxos().GetUtxos() { - utxos = append(utxos, utxo) - } return utxos, nil }