Skip to content

Commit

Permalink
Trailing whitespaces
Browse files Browse the repository at this point in the history
  • Loading branch information
nixorn committed May 22, 2022
1 parent 2a11db7 commit 18cf9a8
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 8 deletions.
6 changes: 3 additions & 3 deletions ru/4/battle-03.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ material:
contract ZombieBattle is ZombieHelper {
uint randNonce = 0;
// Здесь создай attackVictoryProbability
// Здесь создай attackVictoryProbability
function randMod(uint _modulus) internal returns(uint) {
randNonce++;
Expand Down Expand Up @@ -214,7 +214,7 @@ material:
}
answer: >
pragma solidity ^0.4.19;
import "./zombiehelper.sol";
contract ZombieBattle is ZombieHelper {
Expand All @@ -235,7 +235,7 @@ material:

Зомби-битвы будут устроены так:

- Ты выбираешь одного из своих зомби-бойцов и подбираешь ему оппонента
- Ты выбираешь одного из своих зомби-бойцов и подбираешь ему оппонента
- Если ты атакуешь, то у твоего зомби 70% шанс на победу. У защищающегося зомби шанс выиграть 30%
- Все зомби (атакующие и защищающие) будут иметь `winCount` и `lossCount`, которые меняют значение в зависимости от результата боя
- Если атакующий зомби побеждает, он получает следующий уровень и производит нового зомби
Expand Down
4 changes: 2 additions & 2 deletions ru/4/battle-04.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ material:
return (_zombie.readyTime <= now);
}
// 2. Add modifier to function definition:
// 2. Добавь модификатор к определению функции:
function feedAndMultiply(uint _zombieId, uint _targetDna, string _species) internal {
// 3. Remove this line
// 3. Удали эту строку
require(msg.sender == zombieToOwner[_zombieId]);
Zombie storage myZombie = zombies[_zombieId];
require(_isReady(myZombie));
Expand Down
4 changes: 2 additions & 2 deletions ru/4/battle-06.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ material:
// 1. Здесь добавь модификатор
function attack(uint _zombieId, uint _targetId) external {
// 2. Здесь определи функцию
// 2. Здесь определи функцию
}
}
"zombiehelper.sol": |
Expand Down Expand Up @@ -214,7 +214,7 @@ material:
}
answer: >
pragma solidity ^0.4.19;
import "./zombiehelper.sol";
contract ZombieBattle is ZombieHelper {
Expand Down
2 changes: 1 addition & 1 deletion ru/4/battle-08.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ material:
}
answer: >
pragma solidity ^0.4.19;
import "./zombiehelper.sol";
contract ZombieBattle is ZombieHelper {
Expand Down

0 comments on commit 18cf9a8

Please sign in to comment.