mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-02-23 03:08:09 +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();
|
|
}
|
|
} |