Skip to content

Commit

Permalink
fix: update data col subnet count from 64 to 32 (#5413)
Browse files Browse the repository at this point in the history
  • Loading branch information
jacobkaufmann authored Mar 14, 2024
1 parent 14a85fe commit 1317f70
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion consensus/types/src/data_column_subnet_id.rs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ use serde::{Deserialize, Serialize};
use std::fmt::{self, Display};
use std::ops::{Deref, DerefMut};

const DATA_COLUMN_SUBNET_COUNT: u64 = 64;
const DATA_COLUMN_SUBNET_COUNT: u64 = 32;

lazy_static! {
static ref DATA_COLUMN_SUBNET_ID_TO_STRING: Vec<String> = {
Expand Down

0 comments on commit 1317f70

Please sign in to comment.