diff --git a/src/App.vue b/src/App.vue
index cbdd5c7..176d6a0 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -1,5 +1,5 @@
diff --git a/src/blockchain/buyerMethods.ts b/src/blockchain/buyerMethods.ts
index 5c5890b..883cb16 100644
--- a/src/blockchain/buyerMethods.ts
+++ b/src/blockchain/buyerMethods.ts
@@ -3,7 +3,7 @@ import { useEtherStore } from "@/store/ether";
import { getContract, getProvider } from "./provider";
import { getP2PixAddress, getTokenAddress } from "./addresses";
-import p2pix from "../utils/smart_contract_files/P2PIX.json";
+import p2pix from "@/utils/smart_contract_files/P2PIX.json";
import { BigNumber, ethers } from "ethers";
import { parseEther } from "ethers/lib/utils";
diff --git a/src/blockchain/events.ts b/src/blockchain/events.ts
index 75615a2..59608f6 100644
--- a/src/blockchain/events.ts
+++ b/src/blockchain/events.ts
@@ -1,7 +1,7 @@
import { useEtherStore } from "@/store/ether";
import { Contract, ethers } from "ethers";
-import p2pix from "../utils/smart_contract_files/P2PIX.json";
+import p2pix from "@/utils/smart_contract_files/P2PIX.json";
import { formatEther } from "ethers/lib/utils";
import { getContract } from "./provider";
import type { ValidDeposit } from "@/model/ValidDeposit";
diff --git a/src/blockchain/provider.ts b/src/blockchain/provider.ts
index 63bac1a..08448e7 100644
--- a/src/blockchain/provider.ts
+++ b/src/blockchain/provider.ts
@@ -1,6 +1,6 @@
import { useEtherStore } from "@/store/ether";
-import p2pix from "../utils/smart_contract_files/P2PIX.json";
+import p2pix from "@/utils/smart_contract_files/P2PIX.json";
import { updateWalletStatus } from "./wallet";
import {
diff --git a/src/blockchain/wallet.ts b/src/blockchain/wallet.ts
index a4ac1fa..828a5eb 100644
--- a/src/blockchain/wallet.ts
+++ b/src/blockchain/wallet.ts
@@ -3,7 +3,7 @@ import { useEtherStore } from "@/store/ether";
import { getContract, getProvider } from "./provider";
import { getTokenAddress, possibleChains } from "./addresses";
-import mockToken from "../utils/smart_contract_files/MockToken.json";
+import mockToken from "@/utils/smart_contract_files/MockToken.json";
import { ethers, type Event } from "ethers";
import { formatEther } from "ethers/lib/utils";
@@ -128,7 +128,6 @@ const checkUnreleasedLock = async (
(lockStatus: number) => lockStatus == 1
);
- console.log(lockStatus);
if (unreleasedLockId != -1) {
const _lockID = lockStatus[0][unreleasedLockId];
const lock = await p2pContract.mapLocks(_lockID);
@@ -143,8 +142,6 @@ const checkUnreleasedLock = async (
pix: pixData,
};
}
-
- return;
};
export {
diff --git a/src/components/SellerSteps/SellerSearchComponent.vue b/src/components/SellerSteps/SellerSearchComponent.vue
index dac415e..d26cb0c 100644
--- a/src/components/SellerSteps/SellerSearchComponent.vue
+++ b/src/components/SellerSteps/SellerSearchComponent.vue
@@ -1,6 +1,6 @@