Redo Tendermint folder structure

This commit is contained in:
Luke Parker
2022-10-27 06:33:58 -04:00
parent 4c2dd9b306
commit 66f7663cb2
23 changed files with 56 additions and 8 deletions

View File

@@ -0,0 +1,7 @@
#![cfg_attr(not(feature = "std"), no_std)]
use sp_core::sr25519::Public;
trait TendermintApi {
fn validators() -> Vec<Public>;
}