Skip to content

Commit

Permalink
Fix documents
Browse files Browse the repository at this point in the history
  • Loading branch information
xgreenx committed Jan 19, 2024
1 parent c5956a8 commit cc9966c
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
1 change: 1 addition & 0 deletions ci_checks.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ cargo +nightly fmt --all -- --check &&
cargo sort -w --check &&
source .github/workflows/scripts/verify_openssl.sh &&
cargo clippy --all-targets --all-features &&
cargo doc --all-features --workspace &&
cargo make check --locked &&
cargo make check --all-features --locked &&
cargo check -p fuel-core-types --target wasm32-unknown-unknown --no-default-features &&
Expand Down
18 changes: 9 additions & 9 deletions crates/storage/src/column.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,25 +64,25 @@ column_definition! {
Transactions = 6,
/// See [`FuelBlocks`](crate::tables::FuelBlocks)
FuelBlocks = 7,
/// See [`FuelBlockMerkleData`](storage::FuelBlockMerkleData)
/// See [`FuelBlockMerkleData`](crate::tables::merkle::FuelBlockMerkleData)
FuelBlockMerkleData = 8,
/// See [`FuelBlockMerkleMetadata`](storage::FuelBlockMerkleMetadata)
/// See [`FuelBlockMerkleMetadata`](crate::tables::merkle::FuelBlockMerkleMetadata)
FuelBlockMerkleMetadata = 9,
/// Messages that have been spent.
/// Existence of a key in this column means that the message has been spent.
/// See [`SpentMessages`](crate::tables::SpentMessages)
SpentMessages = 10,
/// See [`ContractsAssetsMerkleData`](storage::ContractsAssetsMerkleData)
/// See [`ContractsAssetsMerkleData`](crate::tables::merkle::ContractsAssetsMerkleData)
ContractsAssetsMerkleData = 11,
/// See [`ContractsAssetsMerkleMetadata`](storage::ContractsAssetsMerkleMetadata)
/// See [`ContractsAssetsMerkleMetadata`](crate::tables::merkle::ContractsAssetsMerkleMetadata)
ContractsAssetsMerkleMetadata = 12,
/// See [`ContractsStateMerkleData`](storage::ContractsStateMerkleData)
/// See [`ContractsStateMerkleData`](crate::tables::merkle::ContractsStateMerkleData)
ContractsStateMerkleData = 13,
/// See [`ContractsStateMerkleMetadata`](storage::ContractsStateMerkleMetadata)
/// See [`ContractsStateMerkleMetadata`](crate::tables::merkle::ContractsStateMerkleMetadata)
ContractsStateMerkleMetadata = 14,
/// See [`Messages`](crate::tables::Messages)
Messages = 15,
/// See [`ProcessedTransactions`](storage::ProcessedTransactions)
/// See [`ProcessedTransactions`](crate::tables::ProcessedTransactions)
ProcessedTransactions = 16,

// TODO: Extract the columns below into a separate enum to not mix
Expand All @@ -95,12 +95,12 @@ column_definition! {
Metadata = 17,
/// See [`Receipts`](crate::tables::Receipts)
Receipts = 18,
/// See [`FuelBlockSecondaryKeyBlockHeights`](storage::FuelBlockSecondaryKeyBlockHeights)
/// See `FuelBlockSecondaryKeyBlockHeights`
FuelBlockSecondaryKeyBlockHeights = 19,
/// See [`SealedBlockConsensus`](crate::tables::SealedBlockConsensus)
FuelBlockConsensus = 20,
/// Metadata for the relayer
/// See [`RelayerMetadata`](fuel_core_relayer::ports::RelayerMetadata)
/// See `RelayerMetadata`
RelayerMetadata = 21,

// Below are not required tables. They are used for API and may be removed or moved to another place in the future.
Expand Down

0 comments on commit cc9966c

Please sign in to comment.