Skip to content

Commit

Permalink
Testnet deploy 1.2.2
Browse files Browse the repository at this point in the history
Testnet deploy 1.2.2
  • Loading branch information
adrianvrj authored Dec 18, 2024
2 parents bd424cf + 46cb49f commit 64ef702
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion frontend/gostarkme-web/components/modules/Fund/Fund.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ const Fund = () => {
let evidenceLink = await fundContract.get_evidence_link();
let contactHandle = await fundContract.get_contact_handle();
// Fetch owner
setIsOwner(await fundContract.is_owner(wallet?.account.address));
setIsOwner(await fundContract.is_owner(wallet != undefined ? wallet?.account.address : "0x00000000"));
// USER VOTED?
let voted = await fundContract.get_voter(wallet != undefined ? wallet?.account.address : "0x0000000000");

Expand Down

0 comments on commit 64ef702

Please sign in to comment.