Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions contracts/marketHandler/coinHandler.sol
Original file line number Diff line number Diff line change
Expand Up @@ -145,7 +145,7 @@ contract coinHandler is marketHandlerInterface, HandlerErrors{
/**
* @dev Deposit action
* @param unifiedTokenAmount The deposit amount (must be zero, msg.value is used)
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return true (TODO: validate results)
*/
function deposit(uint256 unifiedTokenAmount, bool flag) external payable override returns (bool)
Expand All @@ -172,7 +172,7 @@ contract coinHandler is marketHandlerInterface, HandlerErrors{
/**
* @dev Withdraw action
* @param unifiedTokenAmount The withdraw amount
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return true (TODO: validate results)
*/
function withdraw(uint256 unifiedTokenAmount, bool flag) external override returns (bool)
Expand All @@ -199,7 +199,7 @@ contract coinHandler is marketHandlerInterface, HandlerErrors{
/**
* @dev Borrow action
* @param unifiedTokenAmount The borrow amount
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return true (TODO: validate results)
*/
function borrow(uint256 unifiedTokenAmount, bool flag) external override returns (bool)
Expand All @@ -226,7 +226,7 @@ contract coinHandler is marketHandlerInterface, HandlerErrors{
/**
* @dev Repay action
* @param unifiedTokenAmount The repay amount (must be zero, msg.value is used)
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return true (TODO: validate results)
*/
function repay(uint256 unifiedTokenAmount, bool flag) external payable override returns (bool)
Expand Down
8 changes: 4 additions & 4 deletions contracts/marketHandler/tokenHandler.sol
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ contract tokenHandler is marketHandlerInterface, HandlerErrors {
/**
* @dev Deposit action
* @param unifiedTokenAmount The deposit amount
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return true (TODO: validate results)
*/
function deposit(uint256 unifiedTokenAmount, bool flag) external payable override returns (bool)
Expand Down Expand Up @@ -180,7 +180,7 @@ contract tokenHandler is marketHandlerInterface, HandlerErrors {
/**
* @dev Withdraw action
* @param unifiedTokenAmount The withdraw amount
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return true (TODO: validate results)
*/
function withdraw(uint256 unifiedTokenAmount, bool flag) external override returns (bool)
Expand All @@ -207,7 +207,7 @@ contract tokenHandler is marketHandlerInterface, HandlerErrors {
/**
* @dev Borrow action
* @param unifiedTokenAmount The borrow amount
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return true (TODO: validate results)
*/
function borrow(uint256 unifiedTokenAmount, bool flag) external override returns (bool)
Expand All @@ -234,7 +234,7 @@ contract tokenHandler is marketHandlerInterface, HandlerErrors {
/**
* @dev Repay action
* @param unifiedTokenAmount The repay amount
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return true (TODO: validate results)
*/
function repay(uint256 unifiedTokenAmount, bool flag) external payable override returns (bool)
Expand Down
8 changes: 4 additions & 4 deletions contracts/reqTokenProxy.sol
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ contract tokenProxy is RequestProxyErrors {
/**
* @dev Forward the deposit request for deposit to the handler logic contract.
* @param unifiedTokenAmount The amount of coins to deposit
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return whether the deposit has been made successfully or not.
*/
function deposit(uint256 unifiedTokenAmount, bool flag) public payable returns (bool)
Expand All @@ -191,7 +191,7 @@ contract tokenProxy is RequestProxyErrors {
/**
* @dev Forward the withdraw request for withdraw to the handler logic contract.
* @param unifiedTokenAmount The amount of coins to withdraw
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return whether the withdraw has been made successfully or not.
*/
function withdraw(uint256 unifiedTokenAmount, bool flag) public returns (bool)
Expand All @@ -207,7 +207,7 @@ contract tokenProxy is RequestProxyErrors {
/**
* @dev Forward the borrow request for borrow to the handler logic contract.
* @param unifiedTokenAmount The amount of coins to borrow
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return whether the borrow has been made successfully or not.
*/
function borrow(uint256 unifiedTokenAmount, bool flag) public returns (bool)
Expand All @@ -223,7 +223,7 @@ contract tokenProxy is RequestProxyErrors {
/**
* @dev Forward the repay request for repay to the handler logic contract.
* @param unifiedTokenAmount The amount of coins to repay
* @param flag Flag for the full calcuation mode
* @param flag Flag for the full calculation mode
* @return whether the repay has been made successfully or not.
*/
function repay(uint256 unifiedTokenAmount, bool flag) public payable returns (bool)
Expand Down
Loading