From d80f3d5d1aa5c5866170ff2940b46634f20cbda9 Mon Sep 17 00:00:00 2001 From: Niko PLP Date: Fri, 26 Apr 2024 22:29:44 +0300 Subject: [PATCH] remove tar.gz dist files --- .gitignore | 1 + nextgraph/src/local_broker.rs | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index a513275..33d7186 100644 --- a/.gitignore +++ b/.gitignore @@ -1,4 +1,5 @@ *~ +*.tar.gz .ng .direnv !.github diff --git a/nextgraph/src/local_broker.rs b/nextgraph/src/local_broker.rs index 9b89129..c6d8e32 100644 --- a/nextgraph/src/local_broker.rs +++ b/nextgraph/src/local_broker.rs @@ -903,7 +903,7 @@ pub async fn wallets_get_all() -> Result, /// /// See [CreateWalletV0] for a list of parameters. /// -/// Wallets are transferable to to other devices (see [wallet_get_file] and [wallet_import]) +/// Wallets are transferable to other devices (see [wallet_get_file] and [wallet_import]) pub async fn wallet_create_v0(params: CreateWalletV0) -> Result { // TODO: entering sub-block to release the lock asap let mut broker = match LOCAL_BROKER.get() {