169 похожих чатов

16 ответов

26 просмотров

hmm... maybe. ... this is all the pertinent code: uint256[] memory _amountOutMin = IUniswapV2Router02(UNISWAP_V2_ROUTER).getAmountsOut(_amountIn, path); uint256 amountOut = _amountOutMin[_amountOutMin.length -1]; uint256 beforeBalance = IERC20(_token).balanceOf(address(this)); IUniswapV2Router02(UNISWAP_V2_ROUTER).swapExactTokensForTokensSupportingFeeOnTransferTokens(_amountIn, amountOut.div(2), path, address(this), block.timestamp) uint256 tokensReceived = (IERC20(_token).balanceOf(address(this))).sub(beforeBalance); return result = ((1).sub((tokensReceived).div(amountOut))).mul(100);

Drew Diligence-(*decentralized only) Автор вопроса
twiddles
hmm... maybe. ... this is all the pertinent code: ...

i think u should add the 'using SafeMath for uint256' and then fix ur formula (is definately underflow)

Drew Diligence (*decentralized only)
i think u should add the 'using SafeMath for uint2...

oh yea... thats in the contract that line. But i guess you're right, ill try figure out a different fomula... thanks anyway! :)

You cannot apply safemath on integer constants

Grim (Travelling)
You cannot apply safemath on integer constants

Interesting. So I need to declare it as variable prior... Eg uint256 one = 1 then use one.sub(.... ?

I can't believe people still use SafeMath

Mitashi
I can't believe people still use SafeMath

What’s wrong with safemath? Honest question

Gerald Maximus
What’s wrong with safemath? Honest question

if you are using ^0.8 it handles the overflow and underflow errors

Mitashi
What's it's use in 0.8.0 an up

Oh, it’s no longer needed? Awesome!

Mitashi
Ye

Thank you

Grim (Travelling)
That'll work

I'll give it a go. Thanks!

Похожие вопросы

Обсуждают сегодня

30500 за редактор? )
Владимир
47
а через ESC-код ?
Alexey Kulakov
29
Чёт не понял, я ж правильной функцией воспользовался чтобы вывести отладочную информацию? но что-то она не ловится
notme
18
Добрый день! Скажите пожалуйста, а какие программы вы бы рекомендовали написать для того, чтобы научиться управлять памятью? Можно написать динамический массив, можно связный ...
Филипп
7
У меня есть функция где происходит это: write_bit(buffer, 1); write_bit(buffer, 0); write_bit(buffer, 1); write_bit(buffer, 1); write_bit(buffer, 1); w...
~
14
Недавно Google Project Zero нашёл багу в SQLite с помощью LLM, о чём достаточно было шумно в определённых интернетах, которые сопровождались рассказами, что скоро всех "ибешни...
Alex Sherbakov
5
Ребят в СИ можно реализовать ООП?
Николай
33
Как передать управляющий символ в открытую через CreateProcess консоль? Собсна, есть процедура: procedure TRedirectThread.WriteData(Data: OEMString); var Written: Cardinal;...
Serjone
6
https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_h_common.erl#L174 https://github.com/erlang/otp/blob/OTP-27.1/lib/kernel/src/logger_olp.erl#L76 15 лет назад...
Maksim Lapshin
20
Всем привет! Имеется функция: function IsValidChar(ch: UTF8Char): Boolean; var i: Integer; ValidChars: AnsiString; begin ValidChars := 'abcdefghijklmnopqrstuvwxyzABCDE...
Евгений
44
Карта сайта