Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
kobayurii committed Jul 9, 2024
1 parent 0b467bc commit 68640b5
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion cache-storage/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@ impl RedisCacheStorage {
})
}

//return first key by prefix
async fn get_keys(&self, key_prefix: String) -> anyhow::Result<Vec<String>> {
Ok(redis::cmd("KEYS")
.arg(format!("{key_prefix}*"))
Expand Down
2 changes: 1 addition & 1 deletion rpc-server/src/modules/receipts/methods.rs
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ async fn fetch_receipt(
let receipt_id = request.receipt_reference.receipt_id;

let receipt_record = fetch_receipt_record(data, request, "EXPERIMENTAL_receipt").await?;

let transaction_details =
try_get_transaction_details_by_hash(data, &receipt_record.parent_transaction_hash)
.await
Expand Down

0 comments on commit 68640b5

Please sign in to comment.