Skip to content

Commit

Permalink
fix: startRequiresWallet default true
Browse files Browse the repository at this point in the history
  • Loading branch information
Keyrxng committed Aug 13, 2024
1 parent 394e7aa commit 7ee8bc3
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/types/plugin-input.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,14 +16,14 @@ export const startStopSchema = T.Object(
reviewDelayTolerance: T.String({ default: "5 Days" }),
taskStaleTimeoutDuration: T.String({ default: "30 Days" }),
maxConcurrentTasks: T.Number({ default: 3 }),
startRequiresWallet: T.Boolean({ default: false }),
startRequiresWallet: T.Boolean({ default: true }),
},
{
default: {
reviewDelayTolerance: "5 Days",
taskStaleTimeoutDuration: "30 Days",
maxConcurrentTasks: 3,
startRequiresWallet: false,
startRequiresWallet: true,
},
}
);
Expand Down

0 comments on commit 7ee8bc3

Please sign in to comment.