diff options
author | Alex Browne <stephenalexbrowne@gmail.com> | 2018-06-07 02:43:07 +0800 |
---|---|---|
committer | Alex Browne <stephenalexbrowne@gmail.com> | 2018-06-07 03:41:15 +0800 |
commit | dd8727d3aebf1f4b552f8bad921b92107ad22936 (patch) | |
tree | 1312b3b7ba60b98ee36ba092aaffb4ad02a8c808 /packages/contracts/src/utils | |
parent | b933946f335fe10f029d785b3a7bf64be1929557 (diff) | |
download | dexon-sol-tools-dd8727d3aebf1f4b552f8bad921b92107ad22936.tar dexon-sol-tools-dd8727d3aebf1f4b552f8bad921b92107ad22936.tar.gz dexon-sol-tools-dd8727d3aebf1f4b552f8bad921b92107ad22936.tar.bz2 dexon-sol-tools-dd8727d3aebf1f4b552f8bad921b92107ad22936.tar.lz dexon-sol-tools-dd8727d3aebf1f4b552f8bad921b92107ad22936.tar.xz dexon-sol-tools-dd8727d3aebf1f4b552f8bad921b92107ad22936.tar.zst dexon-sol-tools-dd8727d3aebf1f4b552f8bad921b92107ad22936.zip |
Apply various fixes based on PR feedback
Diffstat (limited to 'packages/contracts/src/utils')
-rw-r--r-- | packages/contracts/src/utils/increase_time.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/contracts/src/utils/increase_time.ts b/packages/contracts/src/utils/increase_time.ts index 5336a180d..4565d8dbc 100644 --- a/packages/contracts/src/utils/increase_time.ts +++ b/packages/contracts/src/utils/increase_time.ts @@ -8,7 +8,7 @@ let firstAccount: string | undefined; /** * Increases time by the given number of seconds and then mines a block so that * the current block timestamp has the offset applied. - * @param seconds the Promise which is expected to reject + * @param seconds the number of seconds by which to incrase the time offset. * @returns a new Promise which will resolve with the new total time offset or * reject if the time could not be increased. */ |