Skip to content

Commit

Permalink
fix bugs (public verifier)
Browse files Browse the repository at this point in the history
  • Loading branch information
pertsev committed Aug 4, 2019
1 parent 9b4d3bc commit 7997fe2
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion contracts/Mixer.sol
Expand Up @@ -26,7 +26,7 @@ contract Mixer is MerkleTreeWithHistory {
mapping(uint256 => bool) public nullifierHashes;
// we store all commitments just to prevent accidental deposits with the same commitment
mapping(uint256 => bool) public commitments;
IVerifier verifier;
IVerifier public verifier;

event Deposit(uint256 indexed commitment, uint256 leafIndex, uint256 timestamp);
event Withdraw(address to, uint256 nullifierHash, uint256 fee);
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -12,7 +12,7 @@
"build:contract": "npx truffle compile",
"test": "npx truffle test",
"migrate": "npx truffle migrate --network kovan --reset",
"migrate:mainnet": "npx truffle migrate --network mainnet --reset",
"migrate:mainnet": "npx truffle migrate --network mainnet",
"migrate:dev": "npx truffle migrate --network development --reset",
"browserify": "npx browserify cli.js -o index.js --exclude worker_threads",
"eslint": "npx eslint --ignore-path .gitignore .",
Expand Down
6 changes: 3 additions & 3 deletions truffle-config.js
Expand Up @@ -52,10 +52,10 @@ module.exports = {
skipDryRun: true
},
mainnet: {
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, 'https://mainnet.infura.io/v3/c7463beadf2144e68646ff049917b716'),
provider: () => new HDWalletProvider(process.env.PRIVATE_KEY, 'http://ethereum-rpc.trustwalletapp.com'),
network_id: 1,
gas: 5000000,
gasPrice: utils.toWei('3.1', 'gwei'),
gas: 6000000,
gasPrice: utils.toWei('2', 'gwei'),
// confirmations: 0,
// timeoutBlocks: 200,
skipDryRun: true
Expand Down

0 comments on commit 7997fe2

Please sign in to comment.