-
Notifications
You must be signed in to change notification settings - Fork 54
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right Caret Added in Start Scheduler Button #783
Conversation
Hey @0xSaksham! PR has been converted to draft and reviewers removed! Please add them anytime you think the changes are ready for a review. 🙌 |
You have to put 3 different addresses to make the scheduler start. |
This is Ready to merge! |
Please remove everything not related to the icon change. e.g. passing |
src/components/Jam.tsx
Outdated
@@ -283,10 +284,23 @@ export default function Jam({ wallet }: JamProps) { | |||
setAlert(undefined) | |||
setIsWaitingSchedulerStart(true) | |||
|
|||
// const destinations = addressValueKeys(addressCount).map((key) => values[key]) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
// const destinations = addressValueKeys(addressCount).map((key) => values[key]) |
src/components/Jam.tsx
Outdated
tumbler_options: { | ||
addrcount: addressCount, | ||
minmakercount: 1, | ||
makercountrange: [1, 0], | ||
mixdepthcount: addressCount, | ||
mintxcount: 1, | ||
txcountparams: [1, 0], | ||
timelambda: 0.025, // 0.025 minutes := 1.5 seconds | ||
stage1_timelambda_increase: 1.0, | ||
liquiditywait: 13, | ||
waittime: 0.0, | ||
}, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
tumbler_options: { | |
addrcount: addressCount, | |
minmakercount: 1, | |
makercountrange: [1, 0], | |
mixdepthcount: addressCount, | |
mintxcount: 1, | |
txcountparams: [1, 0], | |
timelambda: 0.025, // 0.025 minutes := 1.5 seconds | |
stage1_timelambda_increase: 1.0, | |
liquiditywait: 13, | |
waittime: 0.0, | |
}, |
src/components/Jam.tsx
Outdated
{' '} | ||
{ | ||
// MARK: Scheduler Page | ||
} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
{' '} | |
{ | |
// MARK: Scheduler Page | |
} |
Completed the Changes |
this PR tries to implement #319
I still need to make the scheduler run in normal mode, and work flawlessly with
npm start
andnpm run dev:start