diff --git a/packages/utreexo/src/vanilla/accumulator_tests.cairo b/packages/utreexo/src/vanilla/accumulator_tests.cairo
index ecf0ca86..b1455c11 100644
--- a/packages/utreexo/src/vanilla/accumulator_tests.cairo
+++ b/packages/utreexo/src/vanilla/accumulator_tests.cairo
@@ -38,7 +38,7 @@ fn test_verify_inclusion() {
UtreexoState {
roots: array![
Option::None,
- Option::Some(0x05fb342b44641ae6d67310cf9da5566e1a398fd6b0121d40e2c5acd16e1ddb4a),
+ Option::Some(0x181a554869978703143b97d281460c38e30fe6ba52eb0a03641e446beb0f610),
]
.into(),
};
@@ -47,7 +47,7 @@ fn test_verify_inclusion() {
let result = utxo_state.verify(leaf2, @proof);
assert!(
result.is_ok(),
- "Root at index 1 should be 0x05fb342b44641ae6d67310cf9da5566e1a398fd6b0121d40e2c5acd16e1ddb4a",
+ "Root at index 1 should be 0x181a554869978703143b97d281460c38e30fe6ba52eb0a03641e446beb0f610",
);
// Add the third leaf (0x333333333333333333333333)
@@ -56,7 +56,7 @@ fn test_verify_inclusion() {
UtreexoState {
roots: array![
Option::Some(leaf3),
- Option::Some(0x05fb342b44641ae6d67310cf9da5566e1a398fd6b0121d40e2c5acd16e1ddb4a),
+ Option::Some(0x181a554869978703143b97d281460c38e30fe6ba52eb0a03641e446beb0f610),
]
.into(),
};
@@ -65,7 +65,7 @@ fn test_verify_inclusion() {
let result = utxo_state.verify(leaf2, @proof);
assert!(
result.is_ok(),
- "Root at index 1 should be 0x05fb342b44641ae6d67310cf9da5566e1a398fd6b0121d40e2c5acd16e1ddb4a",
+ "Root at index 1 should be 0x181a554869978703143b97d281460c38e30fe6ba52eb0a03641e446beb0f610",
);
// Add the fourth leaf (0x444444444444444444444444)
@@ -77,7 +77,7 @@ fn test_verify_inclusion() {
roots: array![
Option::None,
Option::None,
- Option::Some(0x018674e0c40577cb5ba4728d6ac7bedfd9548f4020161223261941b2a8ae84b2),
+ Option::Some(0x73f11135a8f669c50ec8257ea06c9e231c140db996458f698b2be1f771a318f),
]
.into(),
};
@@ -87,7 +87,7 @@ fn test_verify_inclusion() {
leaf_index: 0,
proof: array![
0x222222222222222222222222,
- 0x02a6b2ae998d30e1ac356c32b2750c3126cd6b3ecf02e6918a93021d17b2b026,
+ 0x3f2d79e3abddc2b8ac61fba19928ef4882b1c784bff13c633513dd49818384c,
]
.span(),
};
@@ -97,7 +97,7 @@ fn test_verify_inclusion() {
// Create the UtreexoProof for leaf 2
let proof = UtreexoProof {
leaf_index: 1,
- proof: array![leaf1, 0x02a6b2ae998d30e1ac356c32b2750c3126cd6b3ecf02e6918a93021d17b2b026]
+ proof: array![leaf1, 0x3f2d79e3abddc2b8ac61fba19928ef4882b1c784bff13c633513dd49818384c]
.span(),
};
// Call the verify function
@@ -107,7 +107,7 @@ fn test_verify_inclusion() {
// Create the UtreexoProof for leaf 3
let proof = UtreexoProof {
leaf_index: 2,
- proof: array![leaf4, 0x05fb342b44641ae6d67310cf9da5566e1a398fd6b0121d40e2c5acd16e1ddb4a]
+ proof: array![leaf4, 0x181a554869978703143b97d281460c38e30fe6ba52eb0a03641e446beb0f610]
.span(),
};
// Call the verify function
@@ -117,7 +117,7 @@ fn test_verify_inclusion() {
// Create the UtreexoProof for leaf 4
let proof = UtreexoProof {
leaf_index: 3,
- proof: array![leaf3, 0x05fb342b44641ae6d67310cf9da5566e1a398fd6b0121d40e2c5acd16e1ddb4a]
+ proof: array![leaf3, 0x181a554869978703143b97d281460c38e30fe6ba52eb0a03641e446beb0f610]
.span(),
};
// Call the verify function
@@ -127,7 +127,7 @@ fn test_verify_inclusion() {
// Create the UtreexoProof for leaf 4
let proof = UtreexoProof {
leaf_index: 3,
- proof: array![leaf2, 0x05fb342b44641ae6d67310cf9da5566e1a398fd6b0121d40e2c5acd16e1ddb4a]
+ proof: array![leaf2, 0x181a554869978703143b97d281460c38e30fe6ba52eb0a03641e446beb0f610]
.span(),
};
// Call the verify function
@@ -157,7 +157,7 @@ fn test_utreexo_add() {
let expected: Span