Error while running smart contract in remix IDE : "Unexpected token ']'"

28 views Asked by At

While trying to compile and run my smart contract in remix IDE I am facing the below error:

Unexpected token ']'

This is very confusing as this does not tell me where am I actually facing the issue.

Here is my code:

// SPDX-License-Identifier: MIT
pragma solidity 0.8.22;

/**
* @title VotingContract
* @dev Contract to cast a vote with eth address
* @custom:dev-run-script contracts/VotingContract.sol
*/

contract VotingContract {

    constructor(){
        voteInitLogger();
    }
    
    //Event for casting vote
    event castVoteEvent(address from_address, string voted_for);

    //Logger to track who is trying to vote 
    function voteInitLogger() public view  returns (string memory) {
        return string.concat(string(abi.encodePacked(msg.sender)), " Address is trying to cast a vote..." );
    }

    //Logger to track who has casted vote
    function voteCompletionLogger() public view  returns (string memory) {
        return string.concat("Account with address ",string(abi.encodePacked(msg.sender))," has cast a vote");
    }

    //Logger to throw error
    function voteErrorLogger() public view  returns (string memory) {
        return string.concat("Account with address ",string(abi.encodePacked(msg.sender))," has already cast a vote!!");
    }

    //Stores the voter info
    mapping(address => string) internal voterInfo;
    address[] public addressList;

    // Function to check if an address exists in the array
    function addressExists(address _target) public view returns (bool) {
        for (uint i = 0; i < addressList.length; i++) {
            if (addressList[i] == _target) {
                return true;
            }
        }
        return false; 
    }

    function castVote(address from_address) public payable {
        string memory voted_for = string(abi.encodePacked(msg.value));
        if(!addressExists(from_address)){
            emit castVoteEvent(msg.sender, voted_for);
            voterInfo[msg.sender] = voted_for;
            addressList.push(from_address);
            voteCompletionLogger();
        }

        else{
            voteErrorLogger();
        }
    }

    
}

From the code, I do not see any "]". I am not sure if I doing this correctly. I am very new to Blockchain dev.

Please help to solve the issue.

0

There are 0 answers