File tree Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Expand file tree Collapse file tree 3 files changed +8
-5
lines changed Original file line number Diff line number Diff line change @@ -26,10 +26,10 @@ type GlobalFlags struct {
2626 Flagset * flag.FlagSet
2727 Socket string
2828 Address string
29- UseTls bool
30- NtnProto bool
3129 Network string
3230 NetworkMagic int
31+ UseTls bool
32+ NtnProto bool
3333}
3434
3535func NewGlobalFlags () * GlobalFlags {
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ type globalFlags struct {
2828 flagset * flag.FlagSet
2929 socket string
3030 address string
31- useTls bool
32- ntnProto bool
3331 network string
3432 networkMagic int
33+ useTls bool
34+ ntnProto bool
3535}
3636
3737func newGlobalFlags () * globalFlags {
Original file line number Diff line number Diff line change @@ -308,7 +308,10 @@ func testQuery(f *globalFlags) {
308308 case "proposed-protocol-params-updates" :
309309 proposedUpdates , err := o .LocalStateQuery ().Client .GetProposedProtocolParamsUpdates ()
310310 if err != nil {
311- fmt .Printf ("ERROR: failure querying proposed protocol params updates: %s\n " , err )
311+ fmt .Printf (
312+ "ERROR: failure querying proposed protocol params updates: %s\n " ,
313+ err ,
314+ )
312315 os .Exit (1 )
313316 }
314317 fmt .Printf ("proposed-protocol-params-updates: %v\n " , * proposedUpdates )
You can’t perform that action at this time.
0 commit comments