fixed type check errors

This commit is contained in:
hueso
2025-03-04 18:46:10 -03:00
parent 54cff28ba0
commit 3227e3209c
6 changed files with 20 additions and 14 deletions

View File

@@ -12,6 +12,7 @@ import { getNetworksLiquidity } from "@/blockchain/events";
import type { ValidDeposit } from "@/model/ValidDeposit";
import { getUnreleasedLockById } from "@/blockchain/events";
import CustomAlert from "@/components/CustomAlert/CustomAlert.vue";
import { getSolicitation } from "@/utils/bbPay";
enum Step {
Search,
@@ -66,7 +67,7 @@ const releaseTransaction = async (lockId: string) => {
const solicitation = await getSolicitation(lockId);
if (solicitation.confirmed) {
if (solicitation.status) {
const release = await releaseLock(solicitation);
await release.wait();