|
|
@@ -247,7 +247,7 @@ const syncBaseEvents = ({ mk, games, outrights }) => {
|
|
|
if (games?.length) {
|
|
|
const gamesList = baseList[marketType]?.map(game => {
|
|
|
const { evtime, events, sptime, special, ...gameInfo } = game;
|
|
|
- const expireTimeEv = Date.now() - 30000;
|
|
|
+ const expireTimeEv = Date.now() - 45000;
|
|
|
const expireTimeSP = Date.now() - 60000;
|
|
|
let odds = {};
|
|
|
if (evtime > expireTimeEv) {
|
|
|
@@ -712,10 +712,8 @@ const updateSolutions = (solutions) => {
|
|
|
}
|
|
|
});
|
|
|
|
|
|
- if (solutionUpdate.remove.length) {
|
|
|
- Logs.out('solutions add %d, update %d, retain %d, remove %d',
|
|
|
- solutionUpdate.add.length, solutionUpdate.update.length, solutionUpdate.retain.length, solutionUpdate.remove.length);
|
|
|
- }
|
|
|
+ Logs.out('solutions add %d, update %d, retain %d, remove %d',
|
|
|
+ solutionUpdate.add.length, solutionUpdate.update.length, solutionUpdate.retain.length, solutionUpdate.remove.length);
|
|
|
|
|
|
syncSolutions(solutionUpdate);
|
|
|
|