From 274618a844a1f3331e1d14cdd7c3956b862f857a Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 2 Oct 2024 15:39:25 +0300 Subject: [PATCH 1/2] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 42a1df126..849c1d7f4 100644 --- a/README.md +++ b/README.md @@ -42,7 +42,7 @@ Join our Discord chat channel! https://discordapp.com/invite/rocketpool # A Step-by-Step Beginners Guide -The following worked example uses macOS Sierra 10.12.6 and VMware Fusion 8.5.8 - all versions correct as of 15/09/2017. +The following worked example uses macOS Sierra 10.12.6 and VMware Fusion 8.5.8 - all versions are correct as of 15/09/2017. Download and install Ubuntu onto a new VM -> https://www.ubuntu.com/download/desktop - tested with v16.04 From f11ac4212aa0dd5895314b6fb348b17ec70a738d Mon Sep 17 00:00:00 2001 From: Elias Rad <146735585+nnsW3@users.noreply.github.com> Date: Wed, 2 Oct 2024 15:42:18 +0300 Subject: [PATCH 2/2] Update RocketDAOProtocolProposal.sol --- contracts/contract/dao/protocol/RocketDAOProtocolProposal.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/contract/dao/protocol/RocketDAOProtocolProposal.sol b/contracts/contract/dao/protocol/RocketDAOProtocolProposal.sol index 4c1a9d050..e0d1a7926 100644 --- a/contracts/contract/dao/protocol/RocketDAOProtocolProposal.sol +++ b/contracts/contract/dao/protocol/RocketDAOProtocolProposal.sol @@ -222,7 +222,7 @@ contract RocketDAOProtocolProposal is RocketBase, RocketDAOProtocolProposalInter return getUint(keccak256(abi.encodePacked(daoProposalNameSpace, "votes.veto", _proposalID))); } - /// @notice Get the against voteing power count of this proposal + /// @notice Get the against voting power count of this proposal /// @param _proposalID The ID of the proposal to query function getVotingPowerAbstained(uint256 _proposalID) override public view returns (uint256) { return getUint(keccak256(abi.encodePacked(daoProposalNameSpace, "votes.abstained", _proposalID)));