Updated migrations

This commit is contained in:
Игорь Соболев
2019-06-23 15:01:34 +03:00
parent 18f2db8e91
commit b49a62f44c
3 changed files with 9 additions and 11 deletions

View File

@@ -72,9 +72,7 @@ contract Lazy is Structs {
msg.sender.transfer(stake);
}
function taskDataById(uint id) external view returns(
uint[13] memory data
) {
function taskDataById(uint id) external view returns(uint[13] memory data) {
Task memory task = tasks[id];
data[0] = task.data.input[0];