Hotifx: do not return locked connector utxos (#186)

This commit is contained in:
Louis Singer
2024-06-21 18:42:20 +02:00
committed by GitHub
parent bb208ec995
commit 024b0b8402

View File

@@ -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
}