Skip to content

Commit

Permalink
lint
Browse files Browse the repository at this point in the history
  • Loading branch information
dinhani-cw committed Jul 30, 2024
1 parent fa18496 commit 3ecdb0c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/eth/storage/redis/redis_permanent.rs
Original file line number Diff line number Diff line change
Expand Up @@ -328,7 +328,7 @@ impl PermanentStorage for RedisPermanentStorage {
match redis_account {
Ok(vec_json) => match vec_json.first() {
Some(json) => Ok(Some(from_json_str(json))),
None => Ok(None)
None => Ok(None),
},
Err(e) => log_and_err!(reason = e, "failed to read account from redis historical value"),
}
Expand Down

0 comments on commit 3ecdb0c

Please sign in to comment.