Skip to content
Open
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 client/scripts/supersede_level.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ async function printLevelInfo(level) {
}

async function deployAndUpgradeStatisticsToStatisticsSuperseder() {
console.log(colors.bold.yellow("\nDeploing and Ugrading statistics contract to statisticsSuperseder..."));
console.log(colors.bold.yellow("\nDeploing and Upgrading statistics contract to statisticsSuperseder..."));

const props = {
gasPrice: parseInt(await web3.eth.getGasPrice() * 1.10),
Expand Down
2 changes: 1 addition & 1 deletion client/src/constants.js
Original file line number Diff line number Diff line change
Expand Up @@ -115,7 +115,7 @@ export const NETWORKS_INGAME = {
},
};

// Deprectated networks
// Deprecated networks
// status: {deprecated | deprecation-planned}
export const NETWORKS_DEPRECATION = {
GOERLI: {
Expand Down
2 changes: 1 addition & 1 deletion contracts/test/metrics/Player.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ contract TestPlayer is Test {
uint256 totalLevelsFailed = stats.getTotalNoOfFailedSubmissionsByPlayer(user);
assertEq(totalLevelsFailed, 2);

// should return percentange of levels completed
// should return percentage of levels completed
uint256 percentage = stats.getPercentageOfLevelsCompleted(user);
assertEq(percentage, 0.5 ether);

Expand Down