@@ -14,7 +14,7 @@ describe('fetchRequestCommitment', () => {
14
14
let allowlistedUser_A : Wallet
15
15
16
16
beforeAll ( async ( ) => {
17
- const testSetup = await setupLocalTestnetFixture ( 8004 )
17
+ const testSetup = await setupLocalTestnetFixture ( 8546 )
18
18
donId = testSetup . donId
19
19
linkTokenAddress = testSetup . linkTokenAddress
20
20
functionsRouterAddress = testSetup . functionsRouterAddress
@@ -62,7 +62,7 @@ describe('fetchRequestCommitment', () => {
62
62
63
63
const commitment = await fetchRequestCommitment ( {
64
64
requestId : reqId ,
65
- provider : new providers . JsonRpcProvider ( 'http://localhost:8004 /' ) ,
65
+ provider : new providers . JsonRpcProvider ( 'http://localhost:8546 /' ) ,
66
66
functionsRouterAddress,
67
67
donId,
68
68
} )
@@ -105,7 +105,7 @@ describe('fetchRequestCommitment', () => {
105
105
106
106
const commitment = await fetchRequestCommitment ( {
107
107
requestId : reqId ,
108
- provider : new providers . JsonRpcProvider ( 'http://localhost:8004 /' ) ,
108
+ provider : new providers . JsonRpcProvider ( 'http://localhost:8546 /' ) ,
109
109
functionsRouterAddress,
110
110
donId,
111
111
toBlock : 1000 ,
@@ -119,7 +119,7 @@ describe('fetchRequestCommitment', () => {
119
119
await expect ( async ( ) => {
120
120
await fetchRequestCommitment ( {
121
121
requestId : '0xDummyRequestId' ,
122
- provider : new providers . JsonRpcProvider ( 'http://localhost:8004 /' ) ,
122
+ provider : new providers . JsonRpcProvider ( 'http://localhost:8546 /' ) ,
123
123
functionsRouterAddress,
124
124
donId : 'invalid donId' ,
125
125
} )
@@ -132,7 +132,7 @@ describe('fetchRequestCommitment', () => {
132
132
await expect ( async ( ) => {
133
133
await fetchRequestCommitment ( {
134
134
requestId : '0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa' ,
135
- provider : new providers . JsonRpcProvider ( 'http://localhost:8004 /' ) ,
135
+ provider : new providers . JsonRpcProvider ( 'http://localhost:8546 /' ) ,
136
136
functionsRouterAddress,
137
137
donId,
138
138
} )
0 commit comments