From 22f5787e2bb322a52b174879c1dd674e0fa05d56 Mon Sep 17 00:00:00 2001 From: Jannis Pohlmann Date: Wed, 11 Oct 2023 21:56:36 +0200 Subject: [PATCH] fix: Use the correct indexer address in tests The previous address was not present in the test allocations. --- common/src/test_vectors.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/src/test_vectors.rs b/common/src/test_vectors.rs index c5582ea8..36c48292 100644 --- a/common/src/test_vectors.rs +++ b/common/src/test_vectors.rs @@ -109,7 +109,7 @@ lazy_static! { ); pub static ref INDEXER_ADDRESS: Address = - Address::from_str("0x1234567890123456789012345678901234567890").unwrap(); + Address::from_str("0xd75c4dbcb215a6cf9097cfbcc70aab2596b96a9c").unwrap(); pub static ref DISPUTE_MANAGER_ADDRESS: Address = Address::from_str("0xdeadbeefcafebabedeadbeefcafebabedeadbeef").unwrap();