We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hubble can only index custom events from cosmwasm and is unable to index attributes emitted by a default wasm event. This is caused by this comparison
const TYPE_WASM_PREFIX: &str = "wasm-"; // emitted for brevity if !event_type.starts_with(TYPE_WASM_PREFIX)
This can already be solved by either changing the comparison to something like
const TYPE_WASM_PREFIX: &str = "wasm-"; const TYPE_WASM_EVENT: &str = "wasm"; // emitted for brevity if !event_type.starts_with(TYPE_WASM_PREFIX) && !event_type == TYPE_WASM_EVENT
or by changing the wasm prefix like so
const TYPE_WASM_PREFIX: &str = "wasm"; // emitted for brevity if !event_type.starts_with(TYPE_WASM_PREFIX)
The text was updated successfully, but these errors were encountered:
qlp
Successfully merging a pull request may close this issue.
Hubble can only index custom events from cosmwasm and is unable to index attributes emitted by a default wasm event. This is caused by this comparison
This can already be solved by either changing the comparison to something like
or by changing the wasm prefix like so
The text was updated successfully, but these errors were encountered: