Skip to content

Commit 85dcb3a

Browse files
committed
Update defaults and NITs
1 parent c3180a3 commit 85dcb3a

File tree

4 files changed

+11
-4
lines changed

4 files changed

+11
-4
lines changed

orchestrator/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ user.bazelrc
66
result/
77
generator
88
orchestrator
9+
orchestrator_service
910

1011
# Binaries for programs and plugins
1112
*.exe

orchestrator/shell.nix

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
with import <nixpkgs> {};
2+
{
3+
devEnv = stdenv.mkDerivation {
4+
name = "dev";
5+
buildInputs = [ stdenv go_1_23 glibc ];
6+
};
7+
}

orchestrator/src/generate.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ func DefaultGenParams() GenParams {
5656
RoundDurationMin: 30,
5757
PauseMin: 15,
5858
Rounds: 4,
59-
StopsPerRound: 2,
59+
StopsPerRound: 0,
6060
Gap: 180,
6161
SendFromNonBpsOnly: false,
6262
StopOnlyBps: false,
@@ -66,8 +66,8 @@ func DefaultGenParams() GenParams {
6666
PasswordEnv: "",
6767
FundKeyPrefix: "./fund_keys",
6868
Privkeys: []string{},
69-
PaymentReceiver: "B62qn7v4x5g3Z1h8k2j6f9c5z5v5v5v5v5v5v5v5v5v5v5v5v5",
70-
PrivkeysPerFundCmd: 1,
69+
PaymentReceiver: "B62qiy32p8kAKnny8ZFwoMhYpBppM1DWVCqAPBYNcXnsAHhnfAAuXgg",
70+
PrivkeysPerFundCmd: 2,
7171
GenerateFundKeys: 20,
7272
RotationKeys: []string{},
7373
RotationServers: []string{},

orchestrator/src/service/inputs/generator.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,6 @@ type GeneratorInputData struct {
2828
StopsPerRound *int `json:"stops_per_round,omitempty"`
2929
Gap *int `json:"gap,omitempty"`
3030
ZkappSoftLimit *int `json:"zkapp_soft_limit,omitempty"`
31-
Mode *string `json:"mode,omitempty"`
3231
FundKeyPrefix *string `json:"fund_key_prefix,omitempty"`
3332
PasswordEnv *string `json:"password_env,omitempty"`
3433
PaymentReceiver *itn_json_types.MinaPublicKey `json:"payment_receiver,omitempty"`

0 commit comments

Comments
 (0)