File tree Expand file tree Collapse file tree 4 files changed +5
-5
lines changed
Expand file tree Collapse file tree 4 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -24,7 +24,7 @@ import { getEnvironment } from "@iexec/dataprotector-environments";
2424const {
2525 smsUrl ,
2626 iexecGatewayUrl ,
27- resultProxyUrl ,
27+ resultProxyUrl , // TODO remove
2828 ipfsGatewayUrl,
2929 ipfsNodeUrl,
3030 workerpoolProdAddress,
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ export const KNOWN_KEYS = [
66 // iexec protocol config
77 "smsUrl" ,
88 "iexecGatewayUrl" ,
9- "resultProxyUrl" ,
9+ "resultProxyUrl" , // TODO remove
1010 "ipfsGatewayUrl" ,
1111 "ipfsNodeUrl" ,
1212 "workerpoolProdAddress" ,
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ export declare type KnownEnv = "prod" | "staging";
22export declare type EnvKey =
33 | "smsUrl"
44 | "iexecGatewayUrl"
5- | "resultProxyUrl"
5+ | "resultProxyUrl" // TODO remove
66 | "ipfsGatewayUrl"
77 | "ipfsNodeUrl"
88 /**
Original file line number Diff line number Diff line change @@ -17,7 +17,7 @@ const TEST_CHAIN = {
1717 smsDebugURL : DRONE ? 'http://sms-debug:13300' : 'http://127.0.0.1:13301' ,
1818 resultProxyURL : DRONE
1919 ? 'http://result-proxy:13200'
20- : 'http://127.0.0.1:13200' ,
20+ : 'http://127.0.0.1:13200' , // TODO remove
2121 iexecGatewayURL : DRONE ? 'http://market-api:3000' : 'http://127.0.0.1:3000' ,
2222 provider : new JsonRpcProvider (
2323 DRONE ? 'http://bellecour-fork:8545' : 'http://localhost:8545'
@@ -34,7 +34,7 @@ export const getTestRpcProvider = () => new JsonRpcProvider(TEST_CHAIN.rpcURL);
3434export const getTestIExecOption = ( ) => ( {
3535 smsURL : TEST_CHAIN . smsURL ,
3636 smsDebugURL : TEST_CHAIN . smsDebugURL ,
37- resultProxyURL : TEST_CHAIN . resultProxyURL ,
37+ resultProxyURL : TEST_CHAIN . resultProxyURL , // TODO remove
3838 iexecGatewayURL : TEST_CHAIN . iexecGatewayURL ,
3939} ) ;
4040
You can’t perform that action at this time.
0 commit comments