Add warning on `SELFDESTRUCT` usage with `isContract` (#3875)

Co-authored-by: Francisco <fg@frang.io>
pull/3914/head
Pascal Marco Caversaccio 2 years ago committed by GitHub
parent ccc175a9ed
commit a4596cab05
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      contracts/utils/Address.sol

@ -22,6 +22,10 @@ library Address {
* - a contract in construction * - a contract in construction
* - an address where a contract will be created * - an address where a contract will be created
* - an address where a contract lived, but was destroyed * - an address where a contract lived, but was destroyed
*
* Furthermore, `isContract` will also return true if the target contract within
* the same transaction is already scheduled for destruction by `SELFDESTRUCT`,
* which only has an effect at the end of a transaction.
* ==== * ====
* *
* [IMPORTANT] * [IMPORTANT]

Loading…
Cancel
Save