diff --git a/contracts/v0.1/OwnerActor.sol b/contracts/v0.1/OwnerActor.sol index b0396c2..376eb01 100644 --- a/contracts/v0.1/OwnerActor.sol +++ b/contracts/v0.1/OwnerActor.sol @@ -134,7 +134,7 @@ contract OwnerActor is Controllable { Beneficiary.Percent memory percentBeneficiary ) public onlyController { require(_miner.exist, "Owner: there is no miner custodied"); - require(percentBeneficiary.percent < 100 && percentBeneficiary.percent > 0, "Owner: invalid percent"); + require(percentBeneficiary.percent <= 100 && percentBeneficiary.percent > 0, "Owner: invalid percent"); Miner.setPercentBeneficiary(_miner, percentBeneficiary); } } \ No newline at end of file