We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2726785 commit 9e8dd48Copy full SHA for 9e8dd48
crates/primitives/src/constants.rs
@@ -1,10 +1,10 @@
1
use sov_rollup_interface::spec::SpecId;
2
3
/// Prefix for the reveal transaction ids.
4
-// #[cfg(feature = "testing")]
+#[cfg(feature = "testing")]
5
pub const REVEAL_TX_PREFIX: &[u8] = &[2]; // since we changed the prefix to 1 genesis fork proving tests fail
6
- // #[cfg(not(feature = "testing"))]
7
- // pub const REVEAL_TX_PREFIX: &[u8] = &[2, 2];
+#[cfg(not(feature = "testing"))]
+pub const REVEAL_TX_PREFIX: &[u8] = &[2, 2];
8
9
pub const TEST_PRIVATE_KEY: &str =
10
"1212121212121212121212121212121212121212121212121212121212121212";
0 commit comments