forked from cerc-io/laconicd-deprecated
tests: reorganize packages (#7)
* tests: reorganize testing packages * gitignore and minor changes
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
pragma solidity 0.4.24;
|
||||
|
||||
contract ProxyTargetWithoutFallback {
|
||||
event Pong();
|
||||
|
||||
function ping() external {
|
||||
emit Pong();
|
||||
}
|
||||
}
|
||||
|
||||
contract ProxyTargetWithFallback is ProxyTargetWithoutFallback {
|
||||
event ReceivedEth();
|
||||
|
||||
function () external payable {
|
||||
emit ReceivedEth();
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user