Skip to content

Commit

Permalink
Fix merkle data and metadata export
Browse files Browse the repository at this point in the history
  • Loading branch information
bvrooman committed May 9, 2024
1 parent 161aa7c commit 8ba540a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions crates/fuel-core/src/graphql_api/storage.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,10 +93,10 @@ pub enum Column {
/// Existence of a key in this column means that the message has been spent.
/// See [`SpentMessages`](messages::SpentMessages)
SpentMessages = 13,
/// See [`FuelBlockMerkleData`](todo)
OldFuelBlockMerkleData,
/// See [`FuelBlockMerkleMetadata`](todo)
OldFuelBlockMerkleMetadata,
/// See [`OldFuelBlockMerkleData`](old::OldFuelBlockMerkleData)
OldFuelBlockMerkleData = 14,
/// See [`OldFuelBlockMerkleMetadata`](old::OldFuelBlockMerkleMetadata)
OldFuelBlockMerkleMetadata = 15,
}

impl Column {
Expand Down
2 changes: 1 addition & 1 deletion crates/fuel-core/src/graphql_api/storage/old.rs
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ impl TableWithBlueprint for OldFuelBlockMerkleMetadata {
type Column = super::Column;

fn column() -> Self::Column {
Self::Column::OldFuelBlockMerkleData
Self::Column::OldFuelBlockMerkleMetadata
}
}

Expand Down

0 comments on commit 8ba540a

Please sign in to comment.