mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-30 09:37:55 +00:00
11 lines
405 B
Rust
11 lines
405 B
Rust
// Copyright 2019-2022 Parity Technologies (UK) Ltd.
|
|
// This file is dual-licensed as Apache-2.0 or GPL-3.0.
|
|
// see LICENSE for license details.
|
|
|
|
#![allow(clippy::too_many_arguments)]
|
|
|
|
/// The SCALE encoded metadata obtained from a local run of a substrate node.
|
|
pub static METADATA: &[u8] = include_bytes!(concat!(env!("OUT_DIR"), "/metadata.scale"));
|
|
|
|
include!(concat!(env!("OUT_DIR"), "/runtime.rs"));
|