File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -184,15 +184,15 @@ const deployArbitration: DeployFunction = async (hre: HardhatRuntimeEnvironment)
184184 "VRFSubscriptionManagerV2Mock"
185185 ) ) as VRFSubscriptionManagerV2Mock ;
186186 await vrfSubscriptionManagerContract . topUpSubscription ( BigNumber . from ( 10 ) . pow ( 20 ) ) ; // 100 LINK
187- const subId = await vrfSubscriptionManagerContract . subscriptionId ( ) ;
187+ const subscriptionId = await vrfSubscriptionManagerContract . subscriptionId ( ) ;
188188 const vrfConsumer = await deploy ( "VRFConsumerV2" , {
189189 from : deployer ,
190190 args : [
191191 deployer ,
192192 vrfCoordinator ,
193193 sortitionModule . address ,
194194 keyHash ,
195- subId ,
195+ subscriptionId ,
196196 requestConfirmations ,
197197 callbackGasLimit ,
198198 numWords ,
You can’t perform that action at this time.
0 commit comments