* Bump required compiler version to 0.5.2. * Fix shadowed variable warning in ERC20Migrator. * Rename Counter to Counters. * Add dummy state variable to SafeERC20Helper. * Update changelog entry. * Fix CountersImpl name. * Improve changelog entry.
10 lines
265 B
Solidity
10 lines
265 B
Solidity
pragma solidity ^0.5.2;
|
|
|
|
contract ReentrancyAttack {
|
|
function callSender(bytes4 data) public {
|
|
// solhint-disable-next-line avoid-low-level-calls
|
|
(bool success,) = msg.sender.call(abi.encodeWithSelector(data));
|
|
require(success);
|
|
}
|
|
}
|