Skip to content

Commit e1de79b

Browse files
committed
Add cleanup todos
1 parent 56ca934 commit e1de79b

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

environments/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import { getEnvironment } from "@iexec/dataprotector-environments";
2424
const {
2525
smsUrl,
2626
iexecGatewayUrl,
27-
resultProxyUrl,
27+
resultProxyUrl, // TODO remove
2828
ipfsGatewayUrl,
2929
ipfsNodeUrl,
3030
workerpoolProdAddress,

environments/common/utils.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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",

environments/types/index.d.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ export declare type KnownEnv = "prod" | "staging";
22
export declare type EnvKey =
33
| "smsUrl"
44
| "iexecGatewayUrl"
5-
| "resultProxyUrl"
5+
| "resultProxyUrl" // TODO remove
66
| "ipfsGatewayUrl"
77
| "ipfsNodeUrl"
88
/**

packages/sdk/tests/test-utils.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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);
3434
export 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

0 commit comments

Comments
 (0)