From 5b60e44a7ef03d06fd5970f0b7418a3e1ef631d9 Mon Sep 17 00:00:00 2001 From: Alexey Date: Thu, 14 Nov 2019 14:01:11 +0300 Subject: [PATCH] debug message fix --- contracts/ERC20Mixer.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/ERC20Mixer.sol b/contracts/ERC20Mixer.sol index 3dd1cd5..92677f1 100644 --- a/contracts/ERC20Mixer.sol +++ b/contracts/ERC20Mixer.sol @@ -27,7 +27,7 @@ contract ERC20Mixer is Mixer { } 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); }