Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating Fullcount version. #169

Merged
merged 2 commits into from
Mar 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
18 changes: 1 addition & 17 deletions src/Players.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,23 +16,7 @@ contract BeerLeagueBallers is ERC721Enumerable {
"https://badges.moonstream.to/blb/p4.png",
"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/p7.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
Loading