Skip to content

Commit

Permalink
imp: custom query type is empty by default
Browse files Browse the repository at this point in the history
  • Loading branch information
srdtrk committed Jun 2, 2024
1 parent 76479b3 commit 7e120aa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/std/src/query/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ pub use wasm::*;
#[non_exhaustive]
#[derive(Serialize, Deserialize, Clone, Debug, PartialEq, Eq, JsonSchema)]
#[serde(rename_all = "snake_case")]
pub enum QueryRequest<C> {
pub enum QueryRequest<C = Empty> {
Bank(BankQuery),
Custom(C),
#[cfg(feature = "staking")]
Expand Down

0 comments on commit 7e120aa

Please sign in to comment.