-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
16 additions
and
15 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
// SPDX-License-Identifier: GPL-3.0 | ||
pragma solidity 0.7.6; | ||
|
||
import {Relayer} from '@contracts/oracles/Relayer.sol'; | ||
import {CamelotRelayer} from '@contracts/oracles/CamelotRelayer.sol'; | ||
import {FactoryChild} from '@contracts/factories/FactoryChild.sol'; | ||
|
||
contract RelayerChild is Relayer, FactoryChild { | ||
contract RelayerChild is CamelotRelayer, FactoryChild { | ||
// --- Init --- | ||
constructor( | ||
address _algebraV3Factory, | ||
address _baseToken, | ||
address _quoteToken, | ||
uint32 _quotePeriod | ||
) Relayer(_algebraV3Factory, _baseToken, _quoteToken, _quotePeriod) {} | ||
) CamelotRelayer(_algebraV3Factory, _baseToken, _quoteToken, _quotePeriod) {} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters