Skip to content

Commit fec3568

Browse files
committed
fix: lower warning about mempool nonce caching to debug!
This case happens often in normal execution, so it is just spamming the logs as a `warn!`.
1 parent fe45e91 commit fec3568

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/core/mempool.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ impl NonceCache {
853853
let should_store_again = match db_set_nonce(mempool_db, address, nonce) {
854854
Ok(_) => false,
855855
Err(e) => {
856-
warn!("error caching nonce to sqlite: {}", e);
856+
debug!("error caching nonce to sqlite: {}", e);
857857
true
858858
}
859859
};

0 commit comments

Comments
 (0)