Canto/contracts/turnstile.sol:
  146  
  147:     /// @notice Distributes collected fees to the smart contract. Only callable by owner.
  148:     /// @param _tokenId NFT that earned fees
  149:     function distributeFees(uint256 _tokenId) public onlyOwner payable {
  150          if (msg.value == 0) revert NothingToDistribute();
