Fixing tags at listing component

This commit is contained in:
brunoedcf
2023-02-16 15:37:23 -03:00
committed by RcleydsonR
parent f76a2b7736
commit c129e4a905
7 changed files with 138 additions and 58 deletions

View File

@@ -92,10 +92,8 @@ const withdrawDeposit = async (amount: string): Promise<any> => {
parseEther(String(amount)),
[]
);
const with_rec = await withdraw.wait();
const [t] = with_rec.events;
await withdraw.wait();
console.log(t.args);
return withdraw;
};