ci: upgrade lianad clippy to 1.70

This commit is contained in:
Antoine Poinsot 2023-06-27 17:21:09 +02:00
parent b2f95ada58
commit c20c05cee7
No known key found for this signature in database
GPG Key ID: E13FC145CD3F4304
5 changed files with 22 additions and 18 deletions

View File

@ -9,7 +9,7 @@ jobs:
- uses: actions/checkout@v1
- uses: actions-rs/toolchain@v1
with:
toolchain: 1.67.1
toolchain: 1.70.0
components: rustfmt, clippy
override: true
- name: rustfmt

View File

@ -1,6 +1,7 @@
///! Implementation of the Bitcoin interface using bitcoind.
///!
///! We use the RPC interface and a watchonly descriptor wallet.
//! Implementation of the Bitcoin interface using bitcoind.
//!
//! We use the RPC interface and a watchonly descriptor wallet.
mod utils;
use crate::{
bitcoin::{Block, BlockChainTip},

View File

@ -1,6 +1,7 @@
///! Interface to the Bitcoin network.
///!
///! Broadcast transactions, poll for new unspent coins, gather fee estimates.
//! Interface to the Bitcoin network.
//!
//! Broadcast transactions, poll for new unspent coins, gather fee estimates.
pub mod d;
pub mod poller;

View File

@ -1,6 +1,7 @@
///! Database interface for Liana.
///!
///! Record wallet metadata, spent and unspent coins, ongoing transactions.
//! Database interface for Liana.
//!
//! Record wallet metadata, spent and unspent coins, ongoing transactions.
pub mod sqlite;
use crate::{

View File

@ -1,11 +1,12 @@
///! Implementation of the database interface using SQLite.
///!
///! We use a bundled SQLite that is compiled with SQLITE_THREADSAFE. Sqlite.org states:
///! > Multi-thread. In this mode, SQLite can be safely used by multiple threads provided that
///! > no single database connection is used simultaneously in two or more threads.
///!
///! We leverage SQLite's `unlock_notify` feature to synchronize writes accross connection. More
///! about it at https://sqlite.org/unlock_notify.html.
//! Implementation of the database interface using SQLite.
//!
//! We use a bundled SQLite that is compiled with SQLITE_THREADSAFE. Sqlite.org states:
//! > Multi-thread. In this mode, SQLite can be safely used by multiple threads provided that
//! > no single database connection is used simultaneously in two or more threads.
//!
//! We leverage SQLite's `unlock_notify` feature to synchronize writes accross connection. More
//! about it at https://sqlite.org/unlock_notify.html.
pub mod schema;
mod utils;