Skip to content

Commit

Permalink
fix: Tron contract verification
Browse files Browse the repository at this point in the history
  • Loading branch information
Halibao-Lala committed Oct 21, 2024
1 parent 6f4bb69 commit 2b888d5
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ export function ToAccount(props: FlexProps) {
return null;
}

const isInvalid = (!isAvailableAccount && !!toAccount.address) || isTronContract === false;
const isInvalid = (!isAvailableAccount && !!toAccount.address) || isTronContract === true;

const onCheckboxChange = (e: React.ChangeEvent<HTMLInputElement>) => {
if (e.target.checked === true) {
Expand Down

0 comments on commit 2b888d5

Please sign in to comment.