We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f39e68 commit f3cf7e4Copy full SHA for f3cf7e4
Cargo.toml
@@ -2,7 +2,7 @@
2
name = "solana-accountsdb-plugin-kafka"
3
description = "Solana AccountsDb plugin for Kafka"
4
authors = ["Blockdaemon"]
5
-version = "0.1.1"
+version = "0.1.2"
6
edition = "2021"
7
repository = "https://github.com/Blockdaemon/solana-accountsdb-plugin-kafka"
8
license = "Apache-2.0"
example-config.json
src/plugin.rs
@@ -87,7 +87,7 @@ impl AccountsDbPlugin for KafkaPlugin {
87
}
88
89
let info = Self::unwrap_update_account(account);
90
- if !self.unwrap_filter().wants_program(info.pubkey) {
+ if !self.unwrap_filter().wants_program(info.owner) {
91
return Ok(());
92
93
0 commit comments