mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-26 15:47:58 +00:00
port subxt-signer to no-std (such a pain)
This commit is contained in:
@@ -49,6 +49,14 @@ fn subxt_metadata_test() {
|
||||
subxt_metadata::Metadata::decode(&mut &METADATA[..]).expect("should be valid metadata");
|
||||
}
|
||||
|
||||
fn subxt_signer_test() {
|
||||
use subxt_signer::{ SecretUri, ecdsa::Keypair };
|
||||
use core::str::FromStr;
|
||||
let uri = SecretUri::from_str("//Alice").unwrap();
|
||||
let keypair = Keypair::from_uri(&uri).unwrap();
|
||||
}
|
||||
|
||||
fn subxt_core_test() {
|
||||
let _ = subxt_core::utils::Era::Immortal;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user