Skip to content

Commit

Permalink
Make sendValidatorPayment nonReentrant
Browse files Browse the repository at this point in the history
  • Loading branch information
m-chrzan committed Sep 21, 2024
1 parent 032f543 commit 18d9df7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/contracts-0.8/common/EpochManager.sol
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ contract EpochManager is
* delegation beneficiary.
* @param validator Account of the validator.
*/
function sendValidatorPayment(address validator) external {
function sendValidatorPayment(address validator) external nonReentrant {
IAccounts accounts = IAccounts(getAccounts());
address signer = accounts.getValidatorSigner(validator);

Expand Down

0 comments on commit 18d9df7

Please sign in to comment.