Skip to content

Commit

Permalink
Merge pull request #95 from moonstream-to/new-invite-only
Browse files Browse the repository at this point in the history
New invite only
  • Loading branch information
kellan-simiotics authored Dec 13, 2023
2 parents c4098aa + 761b7f3 commit 28656ab
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/Fullcount.sol
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ Functionality:
second commit, then the session is cancelled and both players may unstake their NFTs.
*/
contract Fullcount is EIP712 {
string public constant FullcountVersion = "0.0.3";
string public constant FullcountVersion = "0.0.4";

uint256 public SecondsPerPhase;

Expand Down
4 changes: 2 additions & 2 deletions test/Fullcount.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -207,9 +207,9 @@ contract FullcountTestBase is Test {
contract FullcountTestDeployment is FullcountTestBase {
function test_Deployment() public {
vm.expectEmit();
emit FullcountDeployed("0.0.3", secondsPerPhase);
emit FullcountDeployed("0.0.4", secondsPerPhase);
Fullcount newGame = new Fullcount(secondsPerPhase);
assertEq(newGame.FullcountVersion(), "0.0.3");
assertEq(newGame.FullcountVersion(), "0.0.4");
assertEq(newGame.SecondsPerPhase(), secondsPerPhase);
assertEq(newGame.NumSessions(), 0);
}
Expand Down

0 comments on commit 28656ab

Please sign in to comment.