mirror of
https://github.com/tornadocash/tornado-core.git
synced 2025-08-06 05:44:16 -04:00
change error text
This commit is contained in:
parent
d48f98407d
commit
70b8080991
1 changed files with 2 additions and 2 deletions
|
@ -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.");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue