Skip to content

Commit

Permalink
fix: I5-2
Browse files Browse the repository at this point in the history
  • Loading branch information
loicttn committed May 29, 2024
1 parent 367e556 commit f2aa684
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/provide_parameter/eigenlayer.c
Original file line number Diff line number Diff line change
Expand Up @@ -637,7 +637,7 @@ void handle_lr_complete_queued_withdrawals(ethPluginProvideParameter_t *msg, con
uint8_t buffer[ADDRESS_LENGTH];
copy_address(buffer, msg->parameter, sizeof(buffer));
// we only support same withdrawer accross all the withdrawals
if (params->withdrawer[0] == '\0') {
if (allzeroes(params->withdrawer, sizeof(params->withdrawer)) == 1) {
memcpy(params->withdrawer, buffer, sizeof(params->withdrawer));
} else if (strcmp((const char *) params->withdrawer, (const char *) buffer) != 0) {
PRINTF("Unexpected withdrawer address, %s != expected %s\n",
Expand Down

0 comments on commit f2aa684

Please sign in to comment.