Skip to content

Commit

Permalink
Updating Fullcount version.
Browse files Browse the repository at this point in the history
  • Loading branch information
Kellan Wampler committed Mar 19, 2024
1 parent a517bca commit 5ab8f8e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 19 deletions.
2 changes: 1 addition & 1 deletion src/Fullcount.sol
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,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.1.0";
string public constant FullcountVersion = "0.1.1";

uint256 public SecondsPerPhase;

Expand Down
17 changes: 1 addition & 16 deletions src/Players.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,22 +17,7 @@ contract BeerLeagueBallers is ERC721Enumerable {
"https://badges.moonstream.to/blb/p5.png",
"https://badges.moonstream.to/blb/p6.png",
"https://badges.moonstream.to/blb/p7.png",
"https://badges.moonstream.to/blb/p8.png",
"https://badges.moonstream.to/blb/p9.png",
"https://badges.moonstream.to/blb/p10.png",
"https://badges.moonstream.to/blb/p11.png",
"https://badges.moonstream.to/blb/p12.png",
"https://badges.moonstream.to/blb/p13.png",
"https://badges.moonstream.to/blb/p14.png",
"https://badges.moonstream.to/blb/p15.png",
"https://badges.moonstream.to/blb/p16.png",
"https://badges.moonstream.to/blb/p17.png",
"https://badges.moonstream.to/blb/p18.png",
"https://badges.moonstream.to/blb/p19.png",
"https://badges.moonstream.to/blb/p20.png",
"https://badges.moonstream.to/blb/p21.png",
"https://badges.moonstream.to/blb/p22.png",
"https://badges.moonstream.to/blb/p23.png"
"https://badges.moonstream.to/blb/p8.png"
];

mapping(uint256 => string) public Name;
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.1.0", secondsPerPhase);
emit FullcountDeployed("0.1.1", secondsPerPhase);
Fullcount newGame = new Fullcount(secondsPerPhase);
assertEq(newGame.FullcountVersion(), "0.1.0");
assertEq(newGame.FullcountVersion(), "0.1.1");
assertEq(newGame.SecondsPerPhase(), secondsPerPhase);
assertEq(newGame.NumSessions(), 0);
}
Expand Down

0 comments on commit 5ab8f8e

Please sign in to comment.