debug message fix

This commit is contained in:
Alexey 2019-11-14 14:01:11 +03:00
parent df395187bf
commit 5b60e44a7e

View File

@ -27,7 +27,7 @@ contract ERC20Mixer is Mixer {
} }
function _processDeposit() internal nonReentrant { function _processDeposit() internal nonReentrant {
require(msg.value == 0, "ETH value is supposed to be 0 for ETH mixer"); require(msg.value == 0, "ETH value is supposed to be 0 for ERC20 mixer");
_safeErc20TransferFrom(msg.sender, address(this), denomination); _safeErc20TransferFrom(msg.sender, address(this), denomination);
} }