Skip to content

Commit 41eab23

Browse files
corrected outdated client ip for CI
1 parent 0a5b091 commit 41eab23

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

create-leo-app/template-node/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ async function remoteProgramExecution(programName, functionName, inputs) {
6363
const keyProvider = new AleoKeyProvider();
6464
keyProvider.useCache(true);
6565

66-
const programManager = new ProgramManager("http://34.168.156.3:3030", keyProvider);
66+
const programManager = new ProgramManager("http://34.169.215.4:3030", keyProvider);
6767

6868
const tx = await programManager.buildExecutionTransaction(
6969
{

wasm/src/programs/snapshot_query.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -271,7 +271,7 @@ mod tests {
271271
let commitments =
272272
vec![FieldNative::from_str(commitment_0).unwrap(), FieldNative::from_str(commitment_1).unwrap()];
273273
let (height, state_paths) =
274-
SnapshotQuery::snapshot_statepaths("http://34.168.156.3:3030", &commitments).await.unwrap();
274+
SnapshotQuery::snapshot_statepaths("http://34.169.215.4:3030", &commitments).await.unwrap();
275275
assert_eq!(state_paths.len(), 2);
276276
let (commitment_0_field, state_path_0) = &state_paths[0];
277277
let (commitment_1_field, state_path_1) = &state_paths[1];

wasm/src/utilities/rest.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -96,7 +96,7 @@ mod tests {
9696
)
9797
.unwrap(),
9898
];
99-
let state_paths = get_statepaths_for_commitments("http://34.168.156.3:3030", &commitments).await.unwrap();
99+
let state_paths = get_statepaths_for_commitments("http://34.169.215.4:3030", &commitments).await.unwrap();
100100
assert_eq!(state_paths.len(), 2);
101101
assert_eq!(state_paths[0].global_state_root(), state_paths[1].global_state_root());
102102
}

0 commit comments

Comments
 (0)