Skip to content

Commit 2286191

Browse files
Fix full_stack fuzz target
2e685ff removed a field from UserConfig, which broke this fuzz target. The hardcoded strings needed to be updated to remove this field from them too.
1 parent 239d10a commit 2286191

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

fuzz/src/full_stack.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1137,7 +1137,7 @@ mod tests {
11371137
// our network key
11381138
ext_from_hex("0100000000000000000000000000000000000000000000000000000000000000", &mut test);
11391139
// config
1140-
ext_from_hex("0000000000900000000000000000640001000000000001ffff0000000000000000ffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff000000ffffffff00ffff1a000400010000020400000000040200000a08ffffffffffffffff000100000000", &mut test);
1140+
ext_from_hex("0000000000900000000000000000640001000000000001ffff0000000000000000ffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff000000ffffffff00ffff1a000400010000020400000000040200000a08ffffffffffffffff0001000000", &mut test);
11411141

11421142
// new outbound connection with id 0
11431143
ext_from_hex("00", &mut test);
@@ -1692,7 +1692,7 @@ mod tests {
16921692
// our network key
16931693
ext_from_hex("0100000000000000000000000000000000000000000000000000000000000000", &mut test);
16941694
// config
1695-
ext_from_hex("0000000000900000000000000000640001000000000001ffff0000000000000000ffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff000000ffffffff00ffff1a000400010000020400000000040200000a08ffffffffffffffff000100000000", &mut test);
1695+
ext_from_hex("0000000000900000000000000000640001000000000001ffff0000000000000000ffffffffffffffffffffffffffffffff0000000000000000ffffffffffffffff000000ffffffff00ffff1a000400010000020400000000040200000a08ffffffffffffffff0001000000", &mut test);
16961696

16971697
// new outbound connection with id 0
16981698
ext_from_hex("00", &mut test);

0 commit comments

Comments
 (0)