Skip to content

Commit

Permalink
fix: MILLISECONDS_PER_DAY
Browse files Browse the repository at this point in the history
  • Loading branch information
devchenyan committed Jul 27, 2023
1 parent bf012e1 commit 20a3aa8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/neuron-ui/src/utils/const.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,8 @@ export const SHANNON_CKB_RATIO = 1e8

export const MEDIUM_FEE_RATE = 2000
export const WITHDRAW_EPOCHS = 180
export const MILLISECONDS_IN_YEAR = 365 * 24 * 3600 * 1000
export const MILLISECONDS_PER_DAY = 24 * 3600 * 1000
export const MILLISECONDS_IN_YEAR = 365 * MILLISECONDS_PER_DAY
export const HOURS_PER_EPOCH = 4
export const HOURS_PER_DAY = 24

Expand Down

0 comments on commit 20a3aa8

Please sign in to comment.