diff options
author | Jake Ellowitz <wakkadojo@users.noreply.github.com> | 2018-11-27 06:55:45 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-12-05 06:24:48 +0800 |
commit | 1aa3f9d69f7a6570c6fa62c542063fa92fc0bf5a (patch) | |
tree | 94780ceb572a82594cf2168606e837053206847d /packages/pipeline/src/utils | |
parent | dea89c4e221d5b22de97b27573719cd27ce250c7 (diff) | |
download | dexon-sol-tools-1aa3f9d69f7a6570c6fa62c542063fa92fc0bf5a.tar dexon-sol-tools-1aa3f9d69f7a6570c6fa62c542063fa92fc0bf5a.tar.gz dexon-sol-tools-1aa3f9d69f7a6570c6fa62c542063fa92fc0bf5a.tar.bz2 dexon-sol-tools-1aa3f9d69f7a6570c6fa62c542063fa92fc0bf5a.tar.lz dexon-sol-tools-1aa3f9d69f7a6570c6fa62c542063fa92fc0bf5a.tar.xz dexon-sol-tools-1aa3f9d69f7a6570c6fa62c542063fa92fc0bf5a.tar.zst dexon-sol-tools-1aa3f9d69f7a6570c6fa62c542063fa92fc0bf5a.zip |
updating comment for 0x trusted tokens
Diffstat (limited to 'packages/pipeline/src/utils')
-rw-r--r-- | packages/pipeline/src/utils/index.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/pipeline/src/utils/index.ts b/packages/pipeline/src/utils/index.ts index 732c259d7..b6d84a565 100644 --- a/packages/pipeline/src/utils/index.ts +++ b/packages/pipeline/src/utils/index.ts @@ -56,5 +56,5 @@ export const bigNumberTransformer = new BigNumberTransformer(); export function getHourInUnixTime(): number { const currentTime: number = Date.now(); // tslint:disable-next-line - return currentTime - (currentTime % (3600 * 1000)); + return currentTime - currentTime % (3600 * 1000); } |