Skip to content

Commit

Permalink
Renamed to tradingPeriod in factory contract too
Browse files Browse the repository at this point in the history
  • Loading branch information
cag committed Aug 23, 2017
1 parent 1c033c5 commit 1908f0e
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions contracts/Oracles/FutarchyOracleFactory.sol
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ contract FutarchyOracleFactory {
int upperBound,
MarketMaker marketMaker,
uint24 fee,
uint deadline,
uint tradingPeriod,
uint startDate
);

Expand Down Expand Up @@ -51,7 +51,7 @@ contract FutarchyOracleFactory {
/// @param upperBound Lower bound for event outcome
/// @param marketMaker Market maker contract
/// @param fee Market fee
/// @param deadline Decision deadline
/// @param tradingPeriod Trading period before decision can be determined
/// @param startDate Start date for price logging
/// @return Oracle contract
function createFutarchyOracle(
Expand All @@ -62,7 +62,7 @@ contract FutarchyOracleFactory {
int upperBound,
MarketMaker marketMaker,
uint24 fee,
uint deadline,
uint tradingPeriod,
uint startDate
)
public
Expand All @@ -79,7 +79,7 @@ contract FutarchyOracleFactory {
marketFactory,
marketMaker,
fee,
deadline,
tradingPeriod,
startDate
);
FutarchyOracleCreation(
Expand All @@ -92,7 +92,7 @@ contract FutarchyOracleFactory {
upperBound,
marketMaker,
fee,
deadline,
tradingPeriod,
startDate
);
}
Expand Down

0 comments on commit 1908f0e

Please sign in to comment.