Skip to content

Commit

Permalink
Merge pull request #708 from AugurProject/version-bump
Browse files Browse the repository at this point in the history
1.0.0-20
  • Loading branch information
bthaile authored Jul 6, 2018
2 parents 1b901e3 + 733a996 commit dd0f623
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 44 deletions.
2 changes: 1 addition & 1 deletion package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "augur-core",
"version": "1.0.0-19",
"version": "1.0.0-20",
"description": "Core augur contracts and deployment process",
"author": "The Augur Developers <[email protected]>",
"repository": "http://github.com/AugurProject/augur-core",
Expand Down
42 changes: 0 additions & 42 deletions source/libraries/ContractInterfaces.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2574,13 +2574,6 @@
return <BN>result[0];
}

public getAvgReportingGasPrice_ = async( options?: { sender?: string }): Promise<BN> => {
options = options || {};
const abi: AbiFunction = {"constant":true,"inputs":[],"name":"getAvgReportingGasPrice","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"};
const result = await this.localCall(abi, [], options.sender);
return <BN>result[0];
}

public getController_ = async( options?: { sender?: string }): Promise<string> => {
options = options || {};
const abi: AbiFunction = {"constant":true,"inputs":[],"name":"getController","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"};
Expand All @@ -2595,20 +2588,6 @@
return <BN>result[0];
}

public noteInitialReportingGasPrice = async( options?: { sender?: string, gasPrice?: BN }): Promise<void> => {
options = options || {};
const abi: AbiFunction = {"constant":false,"inputs":[],"name":"noteInitialReportingGasPrice","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"};
await this.remoteCall(abi, [], "noteInitialReportingGasPrice", options.sender, options.gasPrice);
return;
}

public noteInitialReportingGasPrice_ = async( options?: { sender?: string }): Promise<boolean> => {
options = options || {};
const abi: AbiFunction = {"constant":false,"inputs":[],"name":"noteInitialReportingGasPrice","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"};
const result = await this.localCall(abi, [], options.sender);
return <boolean>result[0];
}

public getEndTime_ = async( options?: { sender?: string }): Promise<BN> => {
options = options || {};
const abi: AbiFunction = {"constant":true,"inputs":[],"name":"getEndTime","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"};
Expand Down Expand Up @@ -3323,13 +3302,6 @@
return <boolean>result[0];
}

public getReporterGasCostsFeeAttoeth_ = async( options?: { sender?: string }): Promise<BN> => {
options = options || {};
const abi: AbiFunction = {"constant":true,"inputs":[],"name":"getReporterGasCostsFeeAttoeth","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"};
const result = await this.localCall(abi, [], options.sender);
return <BN>result[0];
}

public doInitialReport = async(payoutNumerators: Array<BN>, invalid: boolean, options?: { sender?: string, gasPrice?: BN }): Promise<void> => {
options = options || {};
const abi: AbiFunction = {"constant":false,"inputs":[{"name":"_payoutNumerators","type":"uint256[]"},{"name":"_invalid","type":"bool"}],"name":"doInitialReport","outputs":[{"name":"","type":"bool"}],"payable":false,"stateMutability":"nonpayable","type":"function"};
Expand Down Expand Up @@ -4282,20 +4254,6 @@
return <BN>result[0];
}

public getOrCacheTargetReporterGasCosts = async( options?: { sender?: string, gasPrice?: BN }): Promise<void> => {
options = options || {};
const abi: AbiFunction = {"constant":false,"inputs":[],"name":"getOrCacheTargetReporterGasCosts","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"};
await this.remoteCall(abi, [], "getOrCacheTargetReporterGasCosts", options.sender, options.gasPrice);
return;
}

public getOrCacheTargetReporterGasCosts_ = async( options?: { sender?: string }): Promise<BN> => {
options = options || {};
const abi: AbiFunction = {"constant":false,"inputs":[],"name":"getOrCacheTargetReporterGasCosts","outputs":[{"name":"","type":"uint256"}],"payable":false,"stateMutability":"nonpayable","type":"function"};
const result = await this.localCall(abi, [], options.sender);
return <BN>result[0];
}

public getFeeWindow_ = async(feeWindowId: BN, options?: { sender?: string }): Promise<string> => {
options = options || {};
const abi: AbiFunction = {"constant":true,"inputs":[{"name":"_feeWindowId","type":"uint256"}],"name":"getFeeWindow","outputs":[{"name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"};
Expand Down

0 comments on commit dd0f623

Please sign in to comment.