File tree Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Expand file tree Collapse file tree 4 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -32,7 +32,7 @@ const asCoinSwitchResult = asObject({
32
32
} )
33
33
} )
34
34
const COUNT = 25
35
- const QUERY_LOOKBACK = 60 * 60 * 24 * 5 // 5 days
35
+ const QUERY_LOOKBACK = 1000 * 60 * 60 * 24 * 5 // 5 days
36
36
37
37
export async function queryCoinSwitch (
38
38
pluginParams : PluginParams
Original file line number Diff line number Diff line change @@ -69,7 +69,7 @@ const asExolixResult = asObject({
69
69
} )
70
70
71
71
const PAGE_LIMIT = 100
72
- const QUERY_LOOKBACK = 60 * 60 * 24 * 3 // 3 days
72
+ const QUERY_LOOKBACK = 1000 * 60 * 60 * 24 * 3 // 3 days
73
73
74
74
type ExolixTx = ReturnType < typeof asExolixTx >
75
75
type ExolixStatus = ReturnType < typeof asExolixStatus >
Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ type GodexTx = ReturnType<typeof asGodexTx>
63
63
type GodexStatus = ReturnType < typeof asGodexStatus >
64
64
65
65
const LIMIT = 100
66
- const QUERY_LOOKBACK = 60 * 60 * 24 * 5 // 5 days
66
+ const QUERY_LOOKBACK = 1000 * 60 * 60 * 24 * 5 // 5 days
67
67
const statusMap : { [ key in GodexStatus ] : Status } = {
68
68
success : 'complete' ,
69
69
wait : 'pending' ,
Original file line number Diff line number Diff line change @@ -67,7 +67,7 @@ type LetsExchangeTx = ReturnType<typeof asLetsExchangeTx>
67
67
type LetsExchangeStatus = ReturnType < typeof asLetsExchangeStatus >
68
68
69
69
const LIMIT = 100
70
- const QUERY_LOOKBACK = 60 * 60 * 24 * 5 // 5 days
70
+ const QUERY_LOOKBACK = 1000 * 60 * 60 * 24 * 5 // 5 days
71
71
const statusMap : { [ key in LetsExchangeStatus ] : Status } = {
72
72
success : 'complete' ,
73
73
wait : 'pending' ,
You can’t perform that action at this time.
0 commit comments