Skip to content

Commit

Permalink
chore: fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
pedroferreira1 committed Nov 29, 2023
1 parent 9eefde0 commit a165610
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions __tests__/integration/utils/test-utils-integration.js
Original file line number Diff line number Diff line change
Expand Up @@ -947,16 +947,16 @@ export class TestUtils {
* This method helps a tester to ensure the current timestamp of the next transaction will be at
* least one unit greater than the specified transaction.
*
* Hathor's timestamp has a granularity of seconds, and it does not allow one transaction to have a
* parent with a timestamp equal to its own.
* Hathor's timestamp has a granularity of seconds, and it does not allow one transaction to have
* a parent with a timestamp equal to its own.
*
* It does not return any content, only delivers the code processing back to the caller at the
* desired time.
*
* @param {IHistoryTx} tx
* @returns {Promise<void>}
*/
static async waitUntilNextTimestamp(tx) {
static async waitUntilNextTimestamp(tx) {
const nowMilliseconds = Date.now().valueOf();
const nextValidMilliseconds = (tx.timestamp + 1) * 1000;

Expand Down

0 comments on commit a165610

Please sign in to comment.