mirror of
https://github.com/Qortal/piratewallet-light-cli.git
synced 2025-07-30 20:01:26 +00:00
20 lines
329 B
Rust
20 lines
329 B
Rust
#[macro_use]
|
|
extern crate rust_embed;
|
|
|
|
pub mod lightclient;
|
|
pub mod grpcconnector;
|
|
pub mod lightwallet;
|
|
pub mod commands;
|
|
|
|
|
|
#[derive(RustEmbed)]
|
|
#[folder = "zcash-params/"]
|
|
pub struct SaplingParams;
|
|
|
|
pub const ANCHOR_OFFSET: u32 = 4;
|
|
|
|
|
|
pub mod grpc_client {
|
|
include!(concat!(env!("OUT_DIR"), "/cash.z.wallet.sdk.rpc.rs"));
|
|
}
|