From e0eca7ced76ddc9c85450ee2d65aaa34b80b6952 Mon Sep 17 00:00:00 2001 From: aljo242 Date: Wed, 25 Sep 2024 12:17:53 -0400 Subject: [PATCH] print for debug --- scripts/genesis.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/genesis.go b/scripts/genesis.go index 18fc13d5a..8546ea94b 100644 --- a/scripts/genesis.go +++ b/scripts/genesis.go @@ -38,6 +38,8 @@ func main() { panic("market map config path (market-cfg-path) cannot be empty") } + fmt.Printf("reading in market map file: %s\n", *marketFile) + marketMap, err := mmtypes.ReadMarketMapFromFile(*marketFile) if err != nil { fmt.Fprintf(flag.CommandLine.Output(), "failed to read market map from file: %s\n", err)