From 42c0dda4aa88b72dacda14d96d4a9761606bfe6e Mon Sep 17 00:00:00 2001 From: Thomas Coratger Date: Wed, 4 Sep 2024 19:45:46 +0200 Subject: [PATCH] YOUR_COMMIT_MESSAGE --- crates/exex/src/db.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/exex/src/db.rs b/crates/exex/src/db.rs index d67ddaa..b204557 100644 --- a/crates/exex/src/db.rs +++ b/crates/exex/src/db.rs @@ -124,7 +124,7 @@ impl Database { let block = self.connection().query_row::( "SELECT data FROM block WHERE number = ?", (number.to_string(),), - // Retrieves the first column of the result row as a string. + // Retrieves the first column of the result row as a string |row| row.get(0), );