casper-node 2.0.3

The Casper blockchain node
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
use casper_types::bytesrepr;
use thiserror::Error;

#[derive(Debug, Error)]
pub(crate) enum Error {
    #[error(transparent)]
    BytesRepr(#[from] bytesrepr::Error),
    #[error("received request without payload")]
    NoPayload,
    #[error(transparent)]
    BinaryPort(#[from] casper_binary_port::Error),
}