Skip to content

Commit e08e76e

Browse files
committed
fix verification hash feature not compiling
1 parent b27e859 commit e08e76e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

geyser-replay/src/firehose.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -482,7 +482,7 @@ where
482482
let message_hash = {
483483
#[cfg(feature = "verify-transaction-signatures")]
484484
{
485-
versioned_tx.verify_and_hash_message()?;
485+
versioned_tx.verify_and_hash_message()?
486486
}
487487
#[cfg(not(feature = "verify-transaction-signatures"))]
488488
{
@@ -1067,7 +1067,7 @@ async fn firehose_geyser_thread(
10671067
let message_hash = {
10681068
#[cfg(feature = "verify-transaction-signatures")]
10691069
{
1070-
versioned_tx.verify_and_hash_message()?;
1070+
versioned_tx.verify_and_hash_message()?
10711071
}
10721072
#[cfg(not(feature = "verify-transaction-signatures"))]
10731073
{

0 commit comments

Comments
 (0)