Skip to content

Commit

Permalink
Update variable name to camelCase to appease linter
Browse files Browse the repository at this point in the history
  • Loading branch information
atodorov committed Nov 6, 2023
1 parent f2bbb91 commit 2e6ad1f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/js/src/runtimeUpgrade.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { creditcoinApi, Keyring } from 'creditcoin-js';
import { createOverrideWeight } from 'creditcoin-js/lib/utils';
import * as fs from 'fs';
import * as child_process from 'child_process';
import * as childProcess from 'child_process';
import { promisify } from 'util';
import { u8aToHex } from './common';

Expand All @@ -27,7 +27,7 @@ type WasmRuntimeInfo = {

// these normally use callbacks, but promises are more convenient
const readFile = promisify(fs.readFile);
const exec = promisify(child_process.exec);
const exec = promisify(childProcess.exec);

/**
* Performs an upgrade to the runtime at the provided path.
Expand Down

0 comments on commit 2e6ad1f

Please sign in to comment.