Updated bytecode and added getUserTickets function

This commit is contained in:
2024-10-27 09:16:40 +00:00
parent 51c6a9702b
commit 1af0c14db8
2 changed files with 85 additions and 62 deletions

View File

@@ -194,4 +194,8 @@ contract EventManager {
transferTicketForce(_ticketId, _to);
}
function getUserTickets(address _user) public view returns (uint256[] memory _ticketIds) {
return userTickets[_user];
}
}