fix interface

This commit is contained in:
poma 2021-03-16 23:51:35 +03:00
parent f02347500b
commit 97b486b9ba
No known key found for this signature in database
GPG Key ID: BA20CB01FE165657
2 changed files with 3 additions and 3 deletions

View File

@ -3,9 +3,9 @@
pragma solidity ^0.6.0;
interface ITornadoInstance {
function token() external returns (address);
function token() external view returns (address);
function denomination() external returns (uint256);
function denomination() external view returns (uint256);
function deposit(bytes32 commitment) external payable;

View File

@ -1,6 +1,6 @@
{
"name": "tornado-anonymity-mining",
"version": "2.1.0",
"version": "2.1.1",
"main": "index.js",
"repository": "https://github.com/tornadocash/tornado-anonymity-mining.git",
"author": "Tornadocash team <hello@tornado.cash>",