Fix sonar, lint and bug issues

This commit is contained in:
RcleydsonR
2023-01-27 19:47:52 -03:00
parent db2d15b318
commit 807bceac26
6 changed files with 215 additions and 10 deletions

View File

@@ -75,7 +75,7 @@ const listAllTransactionByWalletAddress = async (
const listReleaseTransactionByWalletAddress = async (
walletAddress: string
): Promise<Event[]> => {
const p2pContract = getContract();
const p2pContract = getContract(true);
const filterReleasedLocks = p2pContract.filters.LockReleased([walletAddress]);
const eventsReleasedLocks = await p2pContract.queryFilter(

View File

@@ -43,11 +43,11 @@ const validatePix = async (): Promise<void> => {
isCodeInputEmpty.value = true;
return;
}
var sellerPixKey = props.pixTarget;
var transactionValue = props.tokenValue;
const sellerPixKey = props.pixTarget;
const transactionValue = props.tokenValue;
if (sellerPixKey && transactionValue) {
var body_req = {
const body_req = {
e2e_id: e2eId.value,
pix_key: sellerPixKey,
pix_value: transactionValue,

View File

@@ -1,5 +1,5 @@
<script setup lang="ts">
import type { Faq, Section } from "@/model/Faq";
import type { Faq } from "@/model/Faq";
import { ref } from "vue";
import { marked } from "marked";
@@ -100,6 +100,7 @@ const openItem = (index: number) => {
<h3
:class="index == selectedSection ? 'selected-sumario' : 'sumario'"
v-for="(f, index) in faq"
v-bind:key="f.name"
@click="setSelectedSection(index)"
>
{{ f.name }}
@@ -107,7 +108,10 @@ const openItem = (index: number) => {
</div>
<div class="w-4/6">
<div v-for="(item, index) in faq[selectedSection].items">
<div
v-for="(item, index) in faq[selectedSection].items"
v-bind:key="item.title"
>
<div class="flex cursor-pointer" @click="openItem(index)">
<img
alt="plus"

View File

@@ -7,9 +7,11 @@ import { useEtherStore } from "@/store/ether";
import QrCodeComponent from "@/components/QrCodeComponent.vue";
import { storeToRefs } from "pinia";
import { addLock, releaseLock } from "@/blockchain/buyerMethods";
import { updateWalletStatus } from "@/blockchain/wallet";
import {
updateWalletStatus,
listReleaseTransactionByWalletAddress,
} from "@/blockchain/wallet";
import { getNetworksLiquidity } from "@/blockchain/events";
import { listReleaseTransactionByWalletAddress } from "@/blockchain/wallet";
import type { Event } from "ethers";
import type { ValidDeposit } from "@/model/ValidDeposit";

View File

@@ -26,7 +26,7 @@ onMounted(async () => {
const handleCancelDeposit = async (depositID: BigNumber, index: number) => {
const response = await cancelDeposit(depositID);
if (response == true) {
if (response) {
console.log("Depósito cancelado com sucesso.");
depositList.value.splice(index, 1);
}
@@ -34,7 +34,7 @@ const handleCancelDeposit = async (depositID: BigNumber, index: number) => {
const handleWithDrawDeposit = async (depositID: BigNumber, index: number) => {
const response = await withdrawDeposit(depositID);
if (response == true) {
if (response) {
console.log("Token retirado com sucesso.");
depositList.value.splice(index, 1);
}