Skip to content

Commit

Permalink
change markets and tx scan to 24h
Browse files Browse the repository at this point in the history
  • Loading branch information
sschiessl-bcp committed Dec 21, 2021
1 parent 0b108cf commit 17a10d5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion app/sections/markets/markets.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@
}
else {
if(path === "/markets") {
const ofLastHours = 128;
const ofLastHours = 24;
$scope.ofLastHours = ofLastHours;
marketService.getActiveMarkets(ofLastHours, function (returnData) {
$scope.markets = returnData;
Expand Down
2 changes: 1 addition & 1 deletion app/sections/txs/txs.controller.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@
}
else {
if (path === "/txs") {
const ofLastHours = 128;
const ofLastHours = 24;
$scope.ofLastHours = ofLastHours;
networkService.getBigTransactions(function (returnData) {
$scope.transactions = returnData;
Expand Down

0 comments on commit 17a10d5

Please sign in to comment.