From eb38932cc2c7411aa9bb62feae456d3ccabfced7 Mon Sep 17 00:00:00 2001 From: Zer0dot Date: Thu, 14 Jan 2021 18:43:49 -0500 Subject: [PATCH] Cleaned comment --- gas-tracker.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/gas-tracker.ts b/gas-tracker.ts index fbd2c48c..0e165a00 100644 --- a/gas-tracker.ts +++ b/gas-tracker.ts @@ -1,4 +1,6 @@ -// Should be a ts file that has a global var var gas = 0; +/** + * @dev This is a simple script that keeps track of gas spent during deployment. + */ import { BigNumber } from 'ethers'; export var totalGas:BigNumber = BigNumber.from(0);