Skip to content

Commit f3cf7e4

Browse files
author
Richard Patel
committed
fix program filter
1 parent 8f39e68 commit f3cf7e4

File tree

3 files changed

+2
-14
lines changed

3 files changed

+2
-14
lines changed

Cargo.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
name = "solana-accountsdb-plugin-kafka"
33
description = "Solana AccountsDb plugin for Kafka"
44
authors = ["Blockdaemon"]
5-
version = "0.1.1"
5+
version = "0.1.2"
66
edition = "2021"
77
repository = "https://github.com/Blockdaemon/solana-accountsdb-plugin-kafka"
88
license = "Apache-2.0"

example-config.json

Lines changed: 0 additions & 12 deletions
This file was deleted.

src/plugin.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ impl AccountsDbPlugin for KafkaPlugin {
8787
}
8888

8989
let info = Self::unwrap_update_account(account);
90-
if !self.unwrap_filter().wants_program(info.pubkey) {
90+
if !self.unwrap_filter().wants_program(info.owner) {
9191
return Ok(());
9292
}
9393

0 commit comments

Comments
 (0)