etopay-wallet 0.16.1

Functionality for interacting with DLTs used in the ETOPay Wallet
Documentation
1
2
3
4
5
6
7
8
9
10
11
#[repr(i32)]
#[derive(Debug, Clone, Copy, PartialEq, Eq)]
pub enum ErrorCode {
    InvalidParams = -32602,
}

impl ErrorCode {
    pub fn code(self) -> i32 {
        self as i32
    }
}