Skip to content

Commit

Permalink
chore: bump revisions (#27)
Browse files Browse the repository at this point in the history
  • Loading branch information
sakulstra authored Sep 22, 2024
1 parent f02fcb2 commit 2d4f5a4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/contracts/instances/PoolConfiguratorInstance.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pragma solidity ^0.8.0;
import {PoolConfigurator, IPoolAddressesProvider, IPool, VersionedInitializable} from '../protocol/pool/PoolConfigurator.sol';

contract PoolConfiguratorInstance is PoolConfigurator {
uint256 public constant CONFIGURATOR_REVISION = 3;
uint256 public constant CONFIGURATOR_REVISION = 4;

/// @inheritdoc VersionedInitializable
function getRevision() internal pure virtual override returns (uint256) {
Expand Down
2 changes: 1 addition & 1 deletion src/contracts/instances/PoolInstance.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {IPoolAddressesProvider} from '../interfaces/IPoolAddressesProvider.sol';
import {Errors} from '../protocol/libraries/helpers/Errors.sol';

contract PoolInstance is Pool {
uint256 public constant POOL_REVISION = 4;
uint256 public constant POOL_REVISION = 5;

constructor(IPoolAddressesProvider provider) Pool(provider) {}

Expand Down

0 comments on commit 2d4f5a4

Please sign in to comment.