feeless 0.1.11

A Nano (cryptocurrency) node and utilities such as nano addresses, hashing blocks, signing, etc.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
#![forbid(unsafe_code)]

use feeless::cli;
use tracing::error;

#[tokio::main]
async fn main() {
    let result = cli::run().await;
    if let Err(err) = result {
        error!("Exiting because of an error: {:?}", err);
        std::process::exit(1);
    }
}