From 024b0b84020222698b4ebee94d062c4e9eba7c96 Mon Sep 17 00:00:00 2001 From: Louis Singer <41042567+louisinger@users.noreply.github.com> Date: Fri, 21 Jun 2024 18:42:20 +0200 Subject: [PATCH] Hotifx: do not return locked connector utxos (#186) --- server/internal/infrastructure/ocean-wallet/account.go | 3 --- 1 file changed, 3 deletions(-) diff --git a/server/internal/infrastructure/ocean-wallet/account.go b/server/internal/infrastructure/ocean-wallet/account.go index 26a00cf13..aa60716d5 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 }