From c6f4277a9f5b2bf044bd9393be8edf060ade767e Mon Sep 17 00:00:00 2001 From: "A.L." Date: Mon, 8 Jul 2024 20:55:31 +0200 Subject: [PATCH] lint: add solhint disable --- test/mock/GasBuster.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/mock/GasBuster.sol b/test/mock/GasBuster.sol index a8d8834..40588d9 100644 --- a/test/mock/GasBuster.sol +++ b/test/mock/GasBuster.sol @@ -4,7 +4,7 @@ pragma solidity ^0.8.0; contract GasBuster { // Allow the contract to receive ETH receive() external payable { - while (true) { + while (true) { // solhint-disable-line no-empty-blocks // This loop will continue until all gas is consumed } }