Tiltfile: default to just one guardian
Devnet doesn't currently work with multiple guardians. Change-Id: I1500cc95e2c8002149fa78be94cf8e5b94770d1b
This commit is contained in:
parent
bf7942bdfd
commit
9b106fb7be
2
Tiltfile
2
Tiltfile
|
@ -34,7 +34,7 @@ config.define_bool("pyth", False, "Enable Pyth-to-Wormhole component")
|
||||||
config.define_bool("explorer", False, "Enable explorer component")
|
config.define_bool("explorer", False, "Enable explorer component")
|
||||||
|
|
||||||
cfg = config.parse()
|
cfg = config.parse()
|
||||||
num_guardians = int(cfg.get("num", "5"))
|
num_guardians = int(cfg.get("num", "1"))
|
||||||
namespace = cfg.get("namespace", "wormhole")
|
namespace = cfg.get("namespace", "wormhole")
|
||||||
gcpProject = cfg.get("gcpProject", "local-dev")
|
gcpProject = cfg.get("gcpProject", "local-dev")
|
||||||
bigTableKeyPath = cfg.get("bigTableKeyPath", "./event_database/devnet_key.json")
|
bigTableKeyPath = cfg.get("bigTableKeyPath", "./event_database/devnet_key.json")
|
||||||
|
|
Loading…
Reference in New Issue