@@ -6,7 +6,7 @@ import { BigNumber } from "bignumber.js";
6
6
import { ether } from "../../utils/units" ;
7
7
8
8
// Types
9
- import { Address , Log } from "../../../types/common.js" ;
9
+ import { Address } from "../../../types/common.js" ;
10
10
11
11
// Contract types
12
12
import { CoreContract } from "../../../types/generated/core" ;
@@ -30,9 +30,7 @@ BigNumberSetup.configure();
30
30
ChaiSetup . configure ( ) ;
31
31
const { expect, assert } = chai ;
32
32
33
- import { getFormattedLogsFromTxHash } from "../../logs/logUtils" ;
34
33
import {
35
- extractNewSetTokenAddressFromLogs ,
36
34
IssuanceComponentDeposited ,
37
35
} from "../../logs/contracts/core" ;
38
36
@@ -42,22 +40,14 @@ import {
42
40
} from "../../utils/tokenAssertions" ;
43
41
44
42
import {
45
- DEFAULT_GAS ,
46
43
DEPLOYED_TOKEN_QUANTITY ,
47
- NULL_ADDRESS ,
48
- ZERO ,
49
44
} from "../../utils/constants" ;
50
45
51
- import {
52
- assertLogEquivalence ,
53
- } from "../../logs/logAssertions" ;
54
-
55
46
contract ( "CoreIssuance" , ( accounts ) => {
56
47
const [
57
48
ownerAccount ,
58
49
takerAccount ,
59
50
makerAccount ,
60
- unauthorizedAccount ,
61
51
] = accounts ;
62
52
63
53
let core : CoreContract ;
@@ -84,7 +74,7 @@ contract("CoreIssuance", (accounts) => {
84
74
await coreWrapper . setDefaultStateAndAuthorizationsAsync ( core , vault , transferProxy , setTokenFactory ) ;
85
75
} ) ;
86
76
87
- describe . only ( "#fillOrder" , async ( ) => {
77
+ describe ( "#fillOrder" , async ( ) => {
88
78
let subjectCaller : Address ;
89
79
let subjectQuantityToIssue : BigNumber ;
90
80
let subjectSetToIssue : Address ;
@@ -118,7 +108,7 @@ contract("CoreIssuance", (accounts) => {
118
108
makerAccount ,
119
109
subjectSetToIssue ,
120
110
subjectQuantityToIssue ,
121
- { from : ownerAccount } ,
111
+ { from : subjectCaller } ,
122
112
) ;
123
113
}
124
114
0 commit comments