mirror of
https://github.com/status-im/snt-gas-relay.git
synced 2025-01-15 17:05:17 +00:00
4471c165d3
- Added payable fallback function - Added unit test for sending/receiving ether
11 lines
158 B
Solidity
11 lines
158 B
Solidity
pragma solidity ^0.4.17;
|
|
|
|
|
|
contract TestContract {
|
|
|
|
event TestFunctionExecuted();
|
|
|
|
function test() public {
|
|
TestFunctionExecuted();
|
|
}
|
|
} |