mirror of
https://github.com/fluencelabs/lazy-snark
synced 2025-06-10 13:31:26 +00:00
fix typo
This commit is contained in:
@ -36,7 +36,7 @@ contract Lazy is Structs {
|
|||||||
function submit(Data calldata data, Proof calldata proof) external payable {
|
function submit(Data calldata data, Proof calldata proof) external payable {
|
||||||
require(msg.value == stake);
|
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);
|
uint index = tasks.push(task);
|
||||||
|
|
||||||
emit Submitted(msg.sender, index, task);
|
emit Submitted(msg.sender, index, task);
|
||||||
|
Reference in New Issue
Block a user