mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-03-01 06:00:35 +00:00
11 lines
158 B
Solidity
11 lines
158 B
Solidity
|
pragma solidity ^0.4.17;
|
||
|
|
||
|
|
||
|
contract TestContract {
|
||
|
|
||
|
event TestFunctionExecuted();
|
||
|
|
||
|
function test() public {
|
||
|
TestFunctionExecuted();
|
||
|
}
|
||
|
}
|