mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 20:57:59 +00:00
567122fab5
* Make runtime macros work without required `macro_use` * Adds node-template * Adds node-template-release tool * Fixes building `node-template` and improve the release * Add `profile.release` by release script to remove warning * Adds script for releasing the node template * Fixes compilation after master merge * Port node-template to edition 2018 * Remove license * Fixes compilation after master merge * Add `node-template-release.sh` into the CI * WIP Ci integrate node template (#1701) * copy artifacts to s3 bucket latest path * typo * bucket name * Update wasm files
14 lines
253 B
Rust
14 lines
253 B
Rust
//! Initialization errors.
|
|
|
|
use client;
|
|
|
|
error_chain! {
|
|
foreign_links {
|
|
Io(::std::io::Error) #[doc="IO error"];
|
|
Cli(::clap::Error) #[doc="CLI error"];
|
|
}
|
|
links {
|
|
Client(client::error::Error, client::error::ErrorKind) #[doc="Client error"];
|
|
}
|
|
}
|