Skip to content
This repository was archived by the owner on Nov 15, 2023. It is now read-only.

Switch to using ss58-registry crate #9755

Merged
merged 33 commits into from
Oct 12, 2021
Merged
Changes from 1 commit
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
b90ebf2
Switch to using ss58-registry crate
gilescope Sep 11, 2021
ca992a0
cargo fmt
gilescope Sep 11, 2021
1d83da4
putting Default back in its rightful place again.
gilescope Sep 13, 2021
03d225d
Merge branch 'master' into giles-use-ss58-crate
gilescope Sep 13, 2021
0cdcf00
Point to official repo
gilescope Sep 13, 2021
26ad354
Merge branch 'giles-use-ss58-crate' of github.com:gilescope/substrate…
gilescope Sep 13, 2021
029df8a
default
gilescope Sep 13, 2021
1c91881
Tidying
gilescope Sep 14, 2021
5818927
Using latest version
gilescope Sep 16, 2021
59b1d48
Merge branch 'master' into giles-use-ss58-crate
gilescope Sep 17, 2021
9405402
Merge branch 'master' into giles-use-ss58-crate
gilescope Sep 28, 2021
2d067e4
no dep on debug derive
gilescope Sep 28, 2021
80a988e
Rename
gilescope Sep 28, 2021
6695493
cargo fmt
gilescope Sep 28, 2021
c238a69
Updating due to rename
gilescope Oct 1, 2021
0da6f7d
point to main again
gilescope Oct 4, 2021
ecf7207
cargo fmt
gilescope Oct 4, 2021
107669e
Merge branch 'master' into giles-use-ss58-crate
gilescope Oct 4, 2021
075e3be
Don't re-export ss58registry types.
gilescope Oct 4, 2021
c8b5cfb
Revert "Don't re-export ss58registry types."
gilescope Oct 6, 2021
661eec9
Merge branch 'master' into giles-use-ss58-crate
gilescope Oct 6, 2021
bf54d99
Update primitives/core/src/crypto.rs
gilescope Oct 6, 2021
ae9fe51
reference crates.io
gilescope Oct 7, 2021
06c6649
Merge branch 'giles-use-ss58-crate' of github.com:gilescope/substrate…
gilescope Oct 7, 2021
4d2f4aa
bump ss58-registry version
gilescope Oct 8, 2021
0943458
updating lock file
gilescope Oct 8, 2021
8eaf3d2
Merge branch 'master' into giles-use-ss58-crate
gilescope Oct 8, 2021
879ea51
Merge branch 'master' into giles-use-ss58-crate
gilescope Oct 9, 2021
64ecffa
Update primitives/core/src/crypto.rs
gilescope Oct 11, 2021
8dc2772
Update primitives/core/src/crypto.rs
gilescope Oct 11, 2021
3334062
Update primitives/core/src/crypto.rs
gilescope Oct 11, 2021
a7ecede
Update primitives/core/src/crypto.rs
gilescope Oct 11, 2021
6c7e95f
Update primitives/core/src/crypto.rs
gilescope Oct 11, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
cargo fmt
gilescope committed Sep 28, 2021
commit 66954930846b113173fc2f525f0d73900e286066
5 changes: 4 additions & 1 deletion client/cli/src/commands/vanity.rs
Original file line number Diff line number Diff line change
@@ -53,7 +53,10 @@ impl VanityCmd {
pub fn run(&self) -> error::Result<()> {
let formated_seed = with_crypto_scheme!(
self.crypto_scheme.scheme,
generate_key(&self.pattern, unwrap_or_default_ss58_version(self.network_scheme.network)),
generate_key(
&self.pattern,
unwrap_or_default_ss58_version(self.network_scheme.network)
),
)?;

with_crypto_scheme!(