mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 16:57:58 +00:00
1871a95088
* grandpa: remove light-client specific block import * consensus, network: remove finality proofs
9 lines
166 B
Rust
9 lines
166 B
Rust
const PROTOS: &[&str] = &[
|
|
"src/schema/api.v1.proto",
|
|
"src/schema/light.v1.proto"
|
|
];
|
|
|
|
fn main() {
|
|
prost_build::compile_protos(PROTOS, &["src/schema"]).unwrap();
|
|
}
|