Skip to content

Commit

Permalink
Fix for GetTableRows query with sha256 index
Browse files Browse the repository at this point in the history
  • Loading branch information
guilledk committed Nov 26, 2024
1 parent 013e56a commit 5283e03
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ members = [
]

[workspace.package]
version = "0.3.0"
version = "0.3.1"
edition = "2021"
rust-version = "1.75"
authors = ["Jesse Schulman <[email protected]>"]
Expand Down
2 changes: 1 addition & 1 deletion crates/antelope/src/api/v1/structs.rs
Original file line number Diff line number Diff line change
Expand Up @@ -376,7 +376,7 @@ impl TableIndexType {
TableIndexType::UINT64(value) => json!(value.to_string()),
TableIndexType::UINT128(value) => json!(value.to_string()),
TableIndexType::FLOAT64(value) => json!(value.to_string()),
TableIndexType::CHECKSUM256(value) => json!(value.to_index()),
TableIndexType::CHECKSUM256(value) => json!(value.as_string()),
TableIndexType::CHECKSUM160(value) => json!(value.as_string()),
}
}
Expand Down

0 comments on commit 5283e03

Please sign in to comment.