chore: add type hardware to trust-wallet keys output

Signed-off-by: Lorenz Herzberger <lorenzherzberger@gmail.com>
This commit is contained in:
Lorenz Herzberger 2024-09-24 14:39:46 +02:00
parent ff946ca766
commit 1640ff29b9
No known key found for this signature in database
GPG Key ID: FA5EE906EB55316A

View File

@ -134,6 +134,7 @@ func keysCmdFunc(cmd *cobra.Command, _ []string) error {
cmd.Println("- address: " + keys.PlanetmintAddress)
cmd.Printf(" pubkey: [{\"@type\":\"PlanetmintExtended\",\"key\":\"%s\"},{\"@type\":\"PlanetmintHex\",\"key\":\"%s\"},{\"@type\":\"LiquidExtended\",\"key\":\"%s\"}]\n", keys.ExtendedPlanetmintPubkey, keys.RawPlanetmintPubkey, keys.ExtendedLiquidPubkey)
cmd.Println(" type: hardware")
return nil
}