Skip to content

Commit a65bdd2

Browse files
committed
fix: don't cast instance to address
1 parent 984f989 commit a65bdd2

File tree

1 file changed

+3
-5
lines changed

1 file changed

+3
-5
lines changed

contracts/GTCRFactory.sol

+3-5
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,9 @@ contract GTCRFactory {
2222
* @dev Emitted when a new Generalized TCR contract is deployed using this factory.
2323
* @param _address The address of the newly deployed Generalized TCR.
2424
*/
25-
event NewGTCR(address indexed _address);
25+
event NewGTCR(GeneralizedTCR indexed _address);
2626

27-
address[] public instances;
27+
GeneralizedTCR[] public instances;
2828

2929
/**
3030
* @dev Deploy the arbitrable curated registry. The arbitrator is trusted to support appeal periods and not reenter.
@@ -58,8 +58,7 @@ contract GTCRFactory {
5858
uint _challengePeriodDuration,
5959
uint[3] memory _stakeMultipliers
6060
) public {
61-
address instance = address(
62-
new GeneralizedTCR(
61+
GeneralizedTCR instance = new GeneralizedTCR(
6362
_arbitrator,
6463
_arbitratorExtraData,
6564
_connectedTCR,
@@ -72,7 +71,6 @@ contract GTCRFactory {
7271
_removalChallengeBaseDeposit,
7372
_challengePeriodDuration,
7473
_stakeMultipliers
75-
)
7674
);
7775
instances.push(instance);
7876
emit NewGTCR(instance);

0 commit comments

Comments
 (0)