Skip to content

Commit 46c59df

Browse files
authored
Merge pull request #592 from ethereum/fix-tmp-import-in-smtsolver
Fix the import of `tmp` in `smtsolver.ts`
2 parents b9a75e1 + a612836 commit 46c59df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

smtsolver.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
import { sync as commandExistsSync } from 'command-exists';
22
import { execSync } from 'child_process';
33
import * as fs from 'fs';
4-
import tmp from 'tmp';
4+
import * as tmp from 'tmp';
55

66
// Timeout in ms.
77
const timeout = 10000;

0 commit comments

Comments
 (0)