Skip to content

Commit

Permalink
Update 'ReentrancyVulnerable' constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
RCantu92 committed Sep 4, 2024
1 parent c3abd8a commit 4a278a1
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/examples/ReentrancyVulnerable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,9 @@ contract ReentrancyVulnerable is ReentrancyVulnerableCore, InternalFirewall {

constructor(
ISecurityValidator _validator,
ITrustedAttesters _trustedAttesters,
bytes32 _attesterControllerId,
IFirewallAccess _firewallAccess
) InternalFirewall(_validator, _trustedAttesters, _attesterControllerId, _firewallAccess) {}
) InternalFirewall(_validator, _attesterControllerId, _firewallAccess) {}

function withdraw() public {
_secureExecution(balances[msg.sender]);
Expand Down

0 comments on commit 4a278a1

Please sign in to comment.