Skip to content

Commit b0b9134

Browse files
committed
merge
2 parents 944551e + 13206a5 commit b0b9134

File tree

2 files changed

+21
-18
lines changed

2 files changed

+21
-18
lines changed

Cargo.lock

Lines changed: 17 additions & 17 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/agent/state/exporter.rs

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -692,7 +692,10 @@ where
692692
account
693693
.comp
694694
.iter()
695-
.find(|c| c.publisher == solana_pubkey::Pubkey::from(publish_keypair.pubkey().to_bytes()))
695+
.find(|c| {
696+
c.publisher
697+
== solana_pubkey::Pubkey::from(publish_keypair.pubkey().to_bytes())
698+
})
696699
.map(|c| c.latest.pub_slot.max(account.agg.pub_slot))
697700
})
698701
.min();

0 commit comments

Comments
 (0)