Skip to content

Commit

Permalink
remove unused import (#53)
Browse files Browse the repository at this point in the history
  • Loading branch information
marcellorigotti authored Apr 26, 2024
1 parent 9df8e49 commit 2ab3c3e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/metrics/chainflip/gaugeWitnessChainTracking.ts
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ import promClient, { Gauge } from 'prom-client';
import { Context } from '../../lib/interfaces';
import { blake2AsHex } from '@polkadot/util-crypto';
import { hex2bin, insertOrReplace } from '../../utils/utils';
import makeRpcRequest, { customRpc } from '../../utils/makeRpcRequest';
import makeRpcRequest from '../../utils/makeRpcRequest';

const witnessHash10 = new Map<number, Set<string>>();
const witnessHash50 = new Map<number, Set<string>>();
Expand Down
2 changes: 1 addition & 1 deletion src/metrics/chainflip/gaugeWitnessCount.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import promClient, { Gauge } from 'prom-client';
import { Context } from '../../lib/interfaces';
import { hex2bin, insertOrReplace } from '../../utils/utils';
import makeRpcRequest, { customRpc } from '../../utils/makeRpcRequest';
import makeRpcRequest from '../../utils/makeRpcRequest';

const witnessExtrinsicHash10 = new Map<number, Set<string>>();
const witnessExtrinsicHash50 = new Map<number, Set<string>>();
Expand Down

0 comments on commit 2ab3c3e

Please sign in to comment.