Skip to content
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fixed one function parameter naming style
  • Loading branch information
Riaan F Venter committed May 3, 2017
commit 18ffade3d7ecdfb3c5d858288e22f4b87928c50c
4 changes: 2 additions & 2 deletions contracts/ownership/Shareable.sol
Original file line number Diff line number Diff line change
Expand Up @@ -86,8 +86,8 @@ contract Shareable {
}

// Gets an owner by 0-indexed position (using numOwners as the count)
function getOwner(uint ownerIndex) external constant returns (address) {
return address(owners[ownerIndex + 1]);
function getOwner(uint _ownerIndex) external constant returns (address) {
return address(owners[_ownerIndex + 1]);
}

function isOwner(address _addr) constant returns (bool) {
Expand Down