Skip to content

Commit

Permalink
chore: fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
CheshireCatNick committed May 29, 2023
1 parent 050ad3a commit 8e756fd
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions contracts/limitOrder/LimitOrderBook.sol
Original file line number Diff line number Diff line change
Expand Up @@ -195,6 +195,13 @@ contract LimitOrderBook is
);
}

//
// EXTERNAL VIEW
//
function getOrderStatus(bytes32 orderHash) external view override returns (ILimitOrderBook.OrderStatus) {
return _ordersStatus[orderHash];
}

//
// PUBLIC VIEW
//
Expand All @@ -206,10 +213,6 @@ contract LimitOrderBook is
return _whitelistedContractCaller[caller];
}

function getOrderStatus(bytes32 orderHash) external view override returns (ILimitOrderBook.OrderStatus) {
return _ordersStatus[orderHash];
}

//
// INTERNAL NON-VIEW
//
Expand Down

0 comments on commit 8e756fd

Please sign in to comment.