chia-node 0.4.0

An API wrapper for Chia node daemons
Documentation
1
2
3
4
5
6
7
8
#[derive(Debug, thiserror::Error)]
pub enum Error {
	#[error("I/O error:  {0}")]
	IO(#[from] std::io::Error),
	#[error("HTTP error:  {0}")]
	HTTP(#[from] reqwest::Error)
}