12 lines
151 B
Solidity
12 lines
151 B
Solidity
pragma solidity ^0.4.11;
|
|
|
|
contract ReentrancyAttack {
|
|
|
|
function callSender(bytes4 data) {
|
|
if(!msg.sender.call(data)) {
|
|
throw;
|
|
}
|
|
}
|
|
|
|
}
|