From 049d33ef37cef4ff164e70e6b4d683b7966ae225 Mon Sep 17 00:00:00 2001 From: baroooo Date: Mon, 11 Mar 2024 14:36:38 +0100 Subject: [PATCH] chore: fix path to sorted oracles (#394) ### Description CI job that checks storage layouts are failing because we moved SortedOracles to common directory but did not update the path in the job. This PR aims to fix that by updating the path ### Other changes no ### Tested N/A ### Related issues - Issue not tracked --- .github/workflows/storage-layout.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/storage-layout.yaml b/.github/workflows/storage-layout.yaml index 894293f..4f5aff5 100644 --- a/.github/workflows/storage-layout.yaml +++ b/.github/workflows/storage-layout.yaml @@ -22,7 +22,7 @@ jobs: - contracts/swap/BiPoolManager.sol:BiPoolManager - contracts/swap/Reserve.sol:Reserve - contracts/oracles/BreakerBox.sol:BreakerBox - - contracts/oracles/SortedOracles.sol:SortedOracles + - contracts/common/SortedOracles.sol:SortedOracles - contracts/tokens/StableTokenV2.sol:StableTokenV2 steps: - uses: actions/checkout@v3