File tree 1 file changed +3
-5
lines changed
1 file changed +3
-5
lines changed Original file line number Diff line number Diff line change @@ -22,9 +22,9 @@ contract GTCRFactory {
22
22
* @dev Emitted when a new Generalized TCR contract is deployed using this factory.
23
23
* @param _address The address of the newly deployed Generalized TCR.
24
24
*/
25
- event NewGTCR (address indexed _address );
25
+ event NewGTCR (GeneralizedTCR indexed _address );
26
26
27
- address [] public instances;
27
+ GeneralizedTCR [] public instances;
28
28
29
29
/**
30
30
* @dev Deploy the arbitrable curated registry. The arbitrator is trusted to support appeal periods and not reenter.
@@ -58,8 +58,7 @@ contract GTCRFactory {
58
58
uint _challengePeriodDuration ,
59
59
uint [3 ] memory _stakeMultipliers
60
60
) public {
61
- address instance = address (
62
- new GeneralizedTCR (
61
+ GeneralizedTCR instance = new GeneralizedTCR (
63
62
_arbitrator,
64
63
_arbitratorExtraData,
65
64
_connectedTCR,
@@ -72,7 +71,6 @@ contract GTCRFactory {
72
71
_removalChallengeBaseDeposit,
73
72
_challengePeriodDuration,
74
73
_stakeMultipliers
75
- )
76
74
);
77
75
instances.push (instance);
78
76
emit NewGTCR (instance);
You can’t perform that action at this time.
0 commit comments