mirror of
https://github.com/tornadocash/tornado-anonymity-mining.git
synced 2024-11-22 09:47:15 +01:00
12 lines
213 B
Solidity
12 lines
213 B
Solidity
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.6.0;
|
|
|
|
contract Echoer {
|
|
event Echo(address indexed who, bytes data);
|
|
|
|
function echo(bytes calldata _data) external {
|
|
emit Echo(msg.sender, _data);
|
|
}
|
|
}
|