Skip to content

Commit

Permalink
Removed return from vote method
Browse files Browse the repository at this point in the history
  • Loading branch information
gsoares85 committed Jan 23, 2024
1 parent 79b18c7 commit 5b0b90f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 11 deletions.
8 changes: 1 addition & 7 deletions bridge/abi/FederationV3.json
Original file line number Diff line number Diff line change
Expand Up @@ -674,13 +674,7 @@
}
],
"name": "voteTransaction",
"outputs": [
{
"internalType": "bool",
"name": "",
"type": "bool"
}
],
"outputs": [],
"stateMutability": "nonpayable",
"type": "function"
},
Expand Down
5 changes: 1 addition & 4 deletions bridge/contracts/Federation/FederationV3.sol
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ contract FederationV3 is Initializable, UpgradableOwnable {
bytes32 transactionHash,
uint32 logIndex
)
public onlyMember returns(bool)
public onlyMember
{
bytes32 transactionId = getTransactionId(
originalTokenAddress,
Expand Down Expand Up @@ -155,10 +155,7 @@ contract FederationV3 is Initializable, UpgradableOwnable {
blockHash,
logIndex
);
return true;
}

return true;
}

function getTransactionCount(bytes32 transactionId) public view returns(uint) {
Expand Down

0 comments on commit 5b0b90f

Please sign in to comment.