This commit is contained in:
Brandon Millman
2018-02-06 11:48:56 -08:00
parent 5fcb77e591
commit 6bdabe72b9
2 changed files with 3 additions and 2 deletions

View File

@@ -90,7 +90,6 @@ Returns a JSON payload describing the state of the queues for each network. For
Schedules a transaction that sends 0.1 ETH to the `recipient` on the network specified by `networkId` where `recipient` is a hex encoded Ethereum address prefixed with `0x`. If no `networkId` is provided via query parameters the faucet will default to network 42 (Kovan).
`GET /zrx/:recipient?networkId=:networkId`
Schedules a transaction that sends 0.1 ZRX to the `recipient` on the network specified by `networkId` where `recipient` is a hex encoded Ethereum address prefixed with `0x`. If no `networkId` is provided via query parameters the faucet will default to network 42 (Kovan).

View File

@@ -54,7 +54,9 @@ export class Handler {
res.status(503).send('QUEUE_IS_FULL');
return;
}
utils.consoleLog(`Added ${req.params.recipient} to queue: ${requestedAssetType} networkId: ${req.params.networkId}`);
utils.consoleLog(
`Added ${req.params.recipient} to queue: ${requestedAssetType} networkId: ${req.params.networkId}`,
);
res.status(200).end();
}
private static _createProviderEngine(rpcUrl: string) {