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), );