Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
Add comments
Browse files Browse the repository at this point in the history
  • Loading branch information
felix2feng committed Nov 27, 2018
1 parent 6224f6f commit 864b55a
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 2 deletions.
1 change: 1 addition & 0 deletions contracts/core/exchange-wrappers/KyberNetworkWrapper.sol
Expand Up @@ -121,6 +121,7 @@ contract KyberNetworkWrapper {
* fillQuantity Quantity of Set to be filled
* attemptedfillQuantity Quantity of Set taker attempted to fill
*
* @param _exchangeData Standard exchange wrapper interface object containing exchange metadata
* @param _tradesData Arbitrary bytes data for any information to pass to the exchange
* @return address[] The addresses of required components
* @return uint256[] The quantities of required components retrieved by the wrapper
Expand Down
1 change: 1 addition & 0 deletions contracts/core/exchange-wrappers/TakerWalletWrapper.sol
Expand Up @@ -72,6 +72,7 @@ contract TakerWalletWrapper {
* fillQuantity Quantity of Set to be filled
* attemptedfillQuantity Quantity of Set taker attempted to fill
*
* @param _exchangeData Standard exchange wrapper interface object containing exchange metadata
* @param _transfersData Arbitrary bytes data for any information to pass to the exchange
* @return address[] The addresses of required components
* @return uint256[] The quantities of required components retrieved by the wrapper
Expand Down
1 change: 1 addition & 0 deletions contracts/core/exchange-wrappers/ZeroExExchangeWrapper.sol
Expand Up @@ -95,6 +95,7 @@ contract ZeroExExchangeWrapper {
* fillQuantity Quantity of Set to be filled
* attemptedfillQuantity Quantity of Set taker attempted to fill
*
* @param _exchangeData Standard exchange wrapper interface object containing exchange metadata
* @param _ordersData Arbitrary bytes data for any information to pass to the exchange
* @return address[] The addresses of required components
* @return uint256[] The quantities of required components retrieved by the wrapper
Expand Down
1 change: 1 addition & 0 deletions contracts/core/modules/IssuanceOrderModule.sol
Expand Up @@ -386,6 +386,7 @@ contract IssuanceOrderModule is
* fillQuantity Quantity of Set to be filled
* attemptedfillQuantity Quantity of Set taker attempted to fill
*
* @param _exchangeData Standard exchange wrapper interface object containing exchange metadata
* @param _exchange Address of exchange wrapper being called
* @param _bodyData Arbitrary bytes data for orders to be executed on exchange
*/
Expand Down
2 changes: 1 addition & 1 deletion package.json
Expand Up @@ -35,7 +35,7 @@
"precommit": "lint-staged",
"prepare-test": "yarn setup && yarn transpile",
"setup": "yarn clean && yarn compile && yarn generate-typings && yarn deploy:development",
"test": "yarn prepare-test && truffle test `find transpiled/test -name 'takerWalletWrapper.spec.js'`",
"test": "yarn prepare-test && truffle test `find transpiled/test -name '*.spec.js'`",
"test-continuous": "truffle test",
"transpile": "tsc",
"prepublishOnly": "yarn dist"
Expand Down
Expand Up @@ -132,7 +132,7 @@ contract('TakerWalletWrapper', accounts => {
);
}

it.only('transfers the token from the taker', async () => {
it('transfers the token from the taker', async () => {
const existingBalance = await componentToken.balanceOf.callAsync(takerAccount);

await subject();
Expand Down

0 comments on commit 864b55a

Please sign in to comment.