diff options
author | Amir Bandeali <abandeali1@gmail.com> | 2018-08-25 00:27:29 +0800 |
---|---|---|
committer | Amir Bandeali <abandeali1@gmail.com> | 2018-08-25 04:32:04 +0800 |
commit | 070eff6f3a2f3775ef72248c3f345c05cd833798 (patch) | |
tree | 434ea365997e41391c06c14630e3716ef20f2cb7 /packages/contracts/src/2.0.0 | |
parent | 681ed822eca91085300e85e136ddcf4abd90495c (diff) | |
download | dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.gz dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.bz2 dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.lz dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.xz dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.tar.zst dexon-sol-tools-070eff6f3a2f3775ef72248c3f345c05cd833798.zip |
Rename TestStaticCall => TestStaticCallReceiver
Diffstat (limited to 'packages/contracts/src/2.0.0')
-rw-r--r-- | packages/contracts/src/2.0.0/test/TestStaticCallReceiver/TestStaticCallReceiver.sol (renamed from packages/contracts/src/2.0.0/test/TestStaticCall/TestStaticCall.sol) | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/packages/contracts/src/2.0.0/test/TestStaticCall/TestStaticCall.sol b/packages/contracts/src/2.0.0/test/TestStaticCallReceiver/TestStaticCallReceiver.sol index 5a9581f51..41aab01c8 100644 --- a/packages/contracts/src/2.0.0/test/TestStaticCall/TestStaticCall.sol +++ b/packages/contracts/src/2.0.0/test/TestStaticCallReceiver/TestStaticCallReceiver.sol @@ -21,7 +21,8 @@ pragma solidity 0.4.24; import "../../tokens/ERC20Token/IERC20Token.sol"; -contract TestStaticCall { +// solhint-disable no-unused-vars +contract TestStaticCallReceiver { uint256 internal state = 1; |