Add pure to tokenFallback function (#1122)

Silences warning
This commit is contained in:
Brendan Chou
2018-07-27 18:25:39 -07:00
committed by Nicolás Venturo
parent 16429b1522
commit 90b98a7bef

View File

@ -18,7 +18,7 @@ contract HasNoTokens is CanReclaimToken {
* @param value_ uint256 the amount of the specified token
* @param data_ Bytes The data passed from the caller.
*/
function tokenFallback(address from_, uint256 value_, bytes data_) external {
function tokenFallback(address from_, uint256 value_, bytes data_) external pure {
from_;
value_;
data_;