From 5c976a0555fc169281c3a6c7ebe266d238616817 Mon Sep 17 00:00:00 2001 From: Schlagonia Date: Thu, 19 Oct 2023 04:05:18 -0600 Subject: [PATCH] fix: lint --- contracts/debtAllocators/GenericDebtAllocator.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/debtAllocators/GenericDebtAllocator.sol b/contracts/debtAllocators/GenericDebtAllocator.sol index b924e2e..0575924 100644 --- a/contracts/debtAllocators/GenericDebtAllocator.sol +++ b/contracts/debtAllocators/GenericDebtAllocator.sol @@ -172,7 +172,7 @@ contract GenericDebtAllocator is Governance { abi.encodeCall( _vault.update_debt, (_strategy, params.current_debt - toPull) - ) + ) ); } }