Verify Batch signatures

Starts further fleshing out the Serai client tests with common utils.
This commit is contained in:
Luke Parker
2023-03-31 06:34:09 -04:00
parent 30b8636641
commit ae4e98c052
14 changed files with 291 additions and 201 deletions

View File

@@ -88,12 +88,6 @@ pub fn development_config() -> Result<ChainSpec, &'static str> {
account_from_name("Dave"),
account_from_name("Eve"),
account_from_name("Ferdie"),
account_from_name("Alice//stash"),
account_from_name("Bob//stash"),
account_from_name("Charlie//stash"),
account_from_name("Dave//stash"),
account_from_name("Eve//stash"),
account_from_name("Ferdie//stash"),
],
)
},
@@ -132,12 +126,6 @@ pub fn testnet_config() -> Result<ChainSpec, &'static str> {
account_from_name("Dave"),
account_from_name("Eve"),
account_from_name("Ferdie"),
account_from_name("Alice//stash"),
account_from_name("Bob//stash"),
account_from_name("Charlie//stash"),
account_from_name("Dave//stash"),
account_from_name("Eve//stash"),
account_from_name("Ferdie//stash"),
],
)
},