From 2c9d625863bb53dcbffae3e43cb6a2ca71d38d88 Mon Sep 17 00:00:00 2001 From: Evgeny Marchenko Date: Sun, 23 Jun 2019 15:06:32 +0300 Subject: [PATCH] fix typo --- truffle/contracts/Lazy.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/truffle/contracts/Lazy.sol b/truffle/contracts/Lazy.sol index 174f6e0..4826976 100644 --- a/truffle/contracts/Lazy.sol +++ b/truffle/contracts/Lazy.sol @@ -36,7 +36,7 @@ contract Lazy is Structs { function submit(Data calldata data, Proof calldata proof) external payable { require(msg.value == stake); - Task memory task = Task(data, proof, msg.sender, uint96(now), Status.UNCHECKED); + Task memory task = Task(data, proof, msg.sender, now, Status.UNCHECKED); uint index = tasks.push(task); emit Submitted(msg.sender, index, task);