Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
d57bded
Check transfer destination is not a zero address. Fix issue #400
pash7ka Aug 23, 2017
53ef2db
Fix for solidity compiler warnings, issue #367.
pash7ka Aug 28, 2017
35428c0
Fix compiler warnings. Issue #367
pash7ka Aug 28, 2017
0376f2a
Revert unnmerged commits
pash7ka Aug 28, 2017
c55d3dc
Check transfer destination is not a zero address. Fix issue #400
pash7ka Aug 23, 2017
6cd996d
Fix for solidity compiler warnings, issue #367.
pash7ka Aug 28, 2017
28280b3
Fix compiler warnings. Issue #367
pash7ka Aug 28, 2017
bbf17ff
Revert unnmerged commits
pash7ka Aug 28, 2017
5aa0758
Fix for solidity compiler warnings, issue #367.
pash7ka Aug 28, 2017
36223ff
Fix compiler warnings. Issue #367
pash7ka Aug 28, 2017
a07e3d2
Check transfer destination is not a zero address. Fix issue #400
pash7ka Aug 23, 2017
e995955
Revert unnmerged commits
pash7ka Aug 28, 2017
7bc34e1
Check transfer destination is not a zero address. Fix issue #400
pash7ka Aug 23, 2017
31e5d4b
Fix for solidity compiler warnings, issue #367.
pash7ka Aug 28, 2017
ddecb20
Fix compiler warnings. Issue #367
pash7ka Aug 28, 2017
7f95ead
Revert unnmerged commits
pash7ka Aug 28, 2017
1766c98
Check transfer destination is not a zero address. Fix issue #400
pash7ka Aug 23, 2017
b5747b9
Fix for solidity compiler warnings, issue #367.
pash7ka Aug 28, 2017
5b043fa
Fix compiler warnings. Issue #367
pash7ka Aug 28, 2017
790dec0
Revert unnmerged commits
pash7ka Aug 28, 2017
61fcaaf
Fix for solidity compiler warnings, issue #367.
pash7ka Aug 28, 2017
6f7a7bc
Fix compiler warnings. Issue #367
pash7ka Aug 28, 2017
1797327
Check transfer destination is not a zero address. Fix issue #400
pash7ka Aug 23, 2017
352c08d
Revert unnmerged commits
pash7ka Aug 28, 2017
3e0fc5a
Fix solc 0.4.18 warnings: add "public" modifier and change "constant"…
pash7ka Nov 16, 2017
7793b27
Replace "constant" to "view" where function is not pure.
pash7ka Nov 16, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix for solidity compiler warnings, issue #367.
Crazy and temporary solution, but it's working.
  • Loading branch information
pash7ka committed Nov 16, 2017
commit 31e5d4b2fd5b47b7bc913ea894f9cd5feda9effd
3 changes: 2 additions & 1 deletion contracts/ownership/HasNoTokens.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ contract HasNoTokens is CanReclaimToken {
* @param data_ Bytes The data passed from the caller.
*/
function tokenFallback(address from_, uint256 value_, bytes data_) external {
revert();
// revert();
if(true || from_ == 0 || value_ == 0 || data_.length == 0 ) revert(); // Temporary fix for solidity compiler warning
}

}