Tiltfile: default to just one guardian

Devnet doesn't currently work with multiple guardians.

Change-Id: I1500cc95e2c8002149fa78be94cf8e5b94770d1b
This commit is contained in:
Leo 2021-09-13 19:39:32 +02:00 committed by Leopold Schabel
parent bf7942bdfd
commit 9b106fb7be
1 changed files with 1 additions and 1 deletions

View File

@ -34,7 +34,7 @@ config.define_bool("pyth", False, "Enable Pyth-to-Wormhole component")
config.define_bool("explorer", False, "Enable explorer component")
cfg = config.parse()
num_guardians = int(cfg.get("num", "5"))
num_guardians = int(cfg.get("num", "1"))
namespace = cfg.get("namespace", "wormhole")
gcpProject = cfg.get("gcpProject", "local-dev")
bigTableKeyPath = cfg.get("bigTableKeyPath", "./event_database/devnet_key.json")