Skip to content

Commit 9ea9253

Browse files
authored
FIX: voluntary exit messages will al be generated with the same exit epoch (#2290)
1 parent ae41e5f commit 9ea9253

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

launcher/src/backend/ValidatorAccountManager.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -620,7 +620,7 @@ export class ValidatorAccountManager {
620620
this.nodeConnection.taskManager.otherTasksHandler(ref, `Exit msg for ${pubkey?.substring(0, 6)}..`);
621621
try {
622622
let service = await this.nodeConnection.readServiceConfiguration(serviceID);
623-
const result = await this.keymanagerAPI(service, "POST", `/eth/v1/validator/${pubkey}/voluntary_exit`, []);
623+
const result = await this.keymanagerAPI(service, "POST", `/eth/v1/validator/${pubkey}/voluntary_exit?epoch=256`, []);
624624
if (SSHService.checkExecError(result) && result.stderr) throw SSHService.extractExecError(result);
625625

626626
log.info(result);

0 commit comments

Comments
 (0)