change error text

This commit is contained in:
poma 2019-10-25 14:13:43 +03:00
parent d48f98407d
commit 70b8080991
1 changed files with 2 additions and 2 deletions

View File

@ -60,7 +60,7 @@ contract ERC20Mixer is Mixer {
assembly {
success := mload(add(data, 0x20))
}
require(success, "not enough allowed tokens");
require(success, "not enough allowed tokens. Token returns false.");
}
}
@ -81,7 +81,7 @@ contract ERC20Mixer is Mixer {
assembly {
success := mload(add(data, 0x20))
}
require(success, "not enough tokens");
require(success, "not enough tokens. Token returns false.");
}
}
}