holofuel_types 0.1.1

Fuel types used for holofuel a mutual credit currency
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
extern crate chrono;
#[macro_use]
extern crate lazy_static;
pub mod error;
pub mod fee;
pub mod fraction;
pub mod fuel;
pub mod time;
use hdk::prelude::*;

#[derive(thiserror::Error, Debug)]
pub enum Error {
    #[error(transparent)]
    Serialization(#[from] SerializedBytesError),
    #[error("Does not exist")]
    Exists,
}