thecointech / thecoin

Mono-repo for TheCoin project
https://thecoin.io
GNU Affero General Public License v3.0
3 stars 1 forks source link

Core: Update contract on production #526

Closed FrozenKiwi closed 2 months ago

FrozenKiwi commented 4 months ago

Also, add some more tests around UberConverter, ShockAbsorber, and instant uber-transfers to cover the following change:

    // Seems good - do the transfer
    notifyWithdraw(from, finalAmount, msTransferAt); // <-- deployed fix
    notifyDeposit(to, finalAmount, msTransferAt); // <-- deployed fix
    _transfer(from, to, finalAmount);
    emit ExactTransfer(from, to, finalAmount, msTransferAt);