mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-07-12 22:22:36 +02:00
build+lncli: default to hex encoding for byte slices
This commit swaps out golang/protobuf/jsonpb for a custom variant that by default prints byte slices as hex, which is more useful for our setting. Some existing wrapper structs are removed as they can now be printed directly with the new jsonpb. !!! NOTE !!! This commit introduces a breaking change to lncli listinvoices since payment hashes and preimages will now be printed in hex instead of base64.
This commit is contained in:
@ -88,7 +88,7 @@ func buildRoute(ctx *cli.Context) error {
|
||||
return err
|
||||
}
|
||||
|
||||
printJSON(route)
|
||||
printRespJSON(route)
|
||||
|
||||
return nil
|
||||
}
|
||||
|
Reference in New Issue
Block a user