ci: upgrade lianad clippy to 1.70
This commit is contained in:
parent
b2f95ada58
commit
c20c05cee7
2
.github/workflows/main.yml
vendored
2
.github/workflows/main.yml
vendored
@ -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
|
||||
|
||||
@ -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},
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
@ -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::{
|
||||
|
||||
@ -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;
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user