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 fcf8281
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
Expand Up @@ -3,6 +3,7 @@
mod address;
pub mod auth;
mod balance;
mod bit_array;
mod query_delegation;
mod tx;

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 fcf8281

Please sign in to comment.