Skip to content

Commit

Permalink
updated node to v0.2.4
Browse files Browse the repository at this point in the history
  • Loading branch information
jatZama committed Jan 23, 2024
1 parent 376dcab commit 2802aa8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/RandomInConstructorInitializable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ contract RandomInConstructorInitializable is Initializable{
}

function initialize() external initializer{
random = TFHE.randEuint32();
random = TFHE.rem(TFHE.randEuint32(),100);
}

// Returns the name of the token.
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@
"task:mint": "hardhat task:mint",
"task:deployERC20": "hardhat task:deployERC20",
"task:accounts": "hardhat task:accounts",
"fhevm:start": "docker run -i -p 8545:8545 -p 8546:8546 --rm --name fhevm ghcr.io/zama-ai/ethermint-dev-node:v0.2.3",
"fhevm:start": "docker run -i -p 8545:8545 -p 8546:8546 --rm --name fhevm ghcr.io/zama-ai/ethermint-dev-node:v0.2.4",
"fhevm:stop": "docker rm -f fhevm",
"fhevm:restart": "fhevm:stop && fhevm:start",
"fhevm:faucet": "npm run fhevm:faucet:alice && sleep 5 && npm run fhevm:faucet:bob && sleep 5 && npm run fhevm:faucet:carol && sleep 5 && npm run fhevm:faucet:dave",
Expand Down

0 comments on commit 2802aa8

Please sign in to comment.