Skip to content

Commit

Permalink
fix: Soften solidity version of FlashLoanBase contracts (#861)
Browse files Browse the repository at this point in the history
  • Loading branch information
miguelmtzinf committed Jul 4, 2023
1 parent 3bb960b commit 364a779
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contracts/flashloan/base/FlashLoanReceiverBase.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.10;
pragma solidity ^0.8.10;

import {IFlashLoanReceiver} from '../interfaces/IFlashLoanReceiver.sol';
import {IPoolAddressesProvider} from '../../interfaces/IPoolAddressesProvider.sol';
Expand Down
2 changes: 1 addition & 1 deletion contracts/flashloan/base/FlashLoanSimpleReceiverBase.sol
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
// SPDX-License-Identifier: AGPL-3.0
pragma solidity 0.8.10;
pragma solidity ^0.8.10;

import {IFlashLoanSimpleReceiver} from '../interfaces/IFlashLoanSimpleReceiver.sol';
import {IPoolAddressesProvider} from '../../interfaces/IPoolAddressesProvider.sol';
Expand Down

0 comments on commit 364a779

Please sign in to comment.