mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-05-02 14:26:06 -04:00
add timestamp
This commit is contained in:
parent
13b9a948dc
commit
93efd2548b
1 changed files with 2 additions and 2 deletions
|
@ -13,7 +13,7 @@ contract Mixer is MerkleTreeWithHistory {
|
|||
mapping(uint256 => bool) public commitments;
|
||||
IVerifier verifier;
|
||||
|
||||
event Deposit(uint256 indexed commitment, uint256 leafIndex);
|
||||
event Deposit(uint256 indexed commitment, uint256 leafIndex, uint256 timestamp);
|
||||
event Withdraw(address to, uint256 nullifier, uint256 fee);
|
||||
|
||||
/**
|
||||
|
@ -40,7 +40,7 @@ contract Mixer is MerkleTreeWithHistory {
|
|||
require(!commitments[commitment], "The commitment has been submitted");
|
||||
_insert(commitment);
|
||||
commitments[commitment] = true;
|
||||
emit Deposit(commitment, next_index - 1);
|
||||
emit Deposit(commitment, next_index - 1, block.timestamp);
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue