Skip to content

Commit

Permalink
move bitvector
Browse files Browse the repository at this point in the history
  • Loading branch information
fl0rek committed Nov 22, 2024
1 parent 9437196 commit 72705fe
Show file tree
Hide file tree
Showing 4 changed files with 2 additions and 2 deletions.
1 change: 0 additions & 1 deletion types/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
#![cfg_attr(docsrs, feature(doc_cfg))]
#![doc = include_str!("../README.md")]

mod bit_array;
pub mod blob;
mod block;
mod byzantine;
Expand Down
1 change: 1 addition & 0 deletions types/src/state.rs
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
//! Types and interfaces for accessing Celestia's state-relevant information.
mod bit_array;
mod address;
pub mod auth;
mod balance;
Expand Down
File renamed without changes.
2 changes: 1 addition & 1 deletion types/src/state/tx.rs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ use serde::{Deserialize, Serialize};
use celestia_proto::cosmos::base::abci::v1beta1::AbciMessageLog;
use celestia_tendermint_proto::v0_34::abci::Event;

use crate::bit_array::BitVector;
use crate::state::bit_array::BitVector;
use crate::Error;
use crate::Height;

Expand Down

0 comments on commit 72705fe

Please sign in to comment.