Skip to content

Commit

Permalink
fix: Block Streamer not updating last published block (#596)
Browse files Browse the repository at this point in the history
Block Streamer was not updating last published block in redis due to a
bug.
  • Loading branch information
darunrs authored Mar 6, 2024
1 parent 5dcf15f commit 6c5b6fb
Show file tree
Hide file tree
Showing 2 changed files with 336 additions and 11 deletions.
1 change: 1 addition & 0 deletions block-streamer/src/redis.rs
Original file line number Diff line number Diff line change
Expand Up @@ -58,6 +58,7 @@ impl RedisClientImpl {

let mut cmd = redis::cmd("SET");
cmd.arg(key).arg(value);
cmd.query_async(&mut self.connection.clone()).await?;

Ok(())
}
Expand Down
Loading

0 comments on commit 6c5b6fb

Please sign in to comment.