Fix comments

This commit is contained in:
Fabio Berger 2019-02-19 16:35:14 -08:00
parent 8f14099adc
commit fe1e8575ea
3 changed files with 4 additions and 3 deletions

View File

@ -115,6 +115,7 @@ export class OrderValidationUtils {
/**
* Instantiate OrderValidationUtils
* @param orderFilledCancelledFetcher A module that implements the AbstractOrderFilledCancelledFetcher
* @param supportedProvider Web3 provider to use for JSON RPC calls
* @return An instance of OrderValidationUtils
*/
constructor(orderFilledCancelledFetcher: AbstractOrderFilledCancelledFetcher, supportedProvider: SupportedProvider) {
@ -178,7 +179,7 @@ export class OrderValidationUtils {
/**
* Validate a call to FillOrder and throw if it wouldn't succeed
* @param exchangeTradeEmulator ExchangeTradeEmulator to use
* @param provider Web3 provider to use for JSON RPC requests
* @param supportedProvider Web3 provider to use for JSON RPC requests
* @param signedOrder SignedOrder of interest
* @param fillTakerAssetAmount Amount we'd like to fill the order for
* @param takerAddress The taker of the order

View File

@ -20,7 +20,7 @@ export class MetamaskSubprovider extends Subprovider {
private readonly _provider: Provider;
/**
* Instantiates a new MetamaskSubprovider
* @param provider Web3 provider that should handle all user account related requests
* @param supportedProvider Web3 provider that should handle all user account related requests
*/
constructor(supportedProvider: SupportedProvider) {
super();

View File

@ -15,7 +15,7 @@ export class SignerSubprovider extends Subprovider {
private readonly _web3Wrapper: Web3Wrapper;
/**
* Instantiates a new SignerSubprovider.
* @param provider Web3 provider that should handle all user account related requests
* @param supportedProvider Web3 provider that should handle all user account related requests
*/
constructor(supportedProvider: SupportedProvider) {
super();