Skip to content

Commit ba625e5

Browse files
authoredNov 19, 2024
Merge pull request #38 from buffrr/fix-reserved-space
Fix reserved space length
2 parents 323a5ab + 0e4bace commit ba625e5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed
 

Diff for: ‎protocol/src/constants.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ pub struct ChainAnchor {
1616
pub height: u32,
1717
}
1818

19-
pub const RESERVED_SPACES: [&'static [u8]; 3] = [b"\x07example", b"\x04test", b"\x04local"];
19+
pub const RESERVED_SPACES: [&'static [u8]; 3] = [b"\x07example", b"\x04test", b"\x05local"];
2020

2121
/// The number of blocks between each rollout of new spaces for auction.
2222
pub const ROLLOUT_BLOCK_INTERVAL: u32 = 144;

0 commit comments

Comments
 (0)
Please sign in to comment.