We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a2080d commit 2c52bcbCopy full SHA for 2c52bcb
database/src/postgres/rpc_server.rs
@@ -385,7 +385,7 @@ impl crate::ReaderDbManager for crate::PostgresDBManager {
385
.bind(bigdecimal::BigDecimal::from(request_block_height))
386
.fetch_one(shard_id_pool.pool)
387
.await?;
388
- Ok(code_size.to_u64().map(|size| size).unwrap_or_default())
+ Ok(code_size.to_u64().unwrap_or_default())
389
}
390
391
async fn get_access_key(
0 commit comments