Skip to content

Commit

Permalink
Capitalize Provider
Browse files Browse the repository at this point in the history
  • Loading branch information
gjgd committed Jul 24, 2018
1 parent a196f38 commit 33868ff
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/TransmuteDPOS.sol
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ contract TransmuteDPOS is TransmuteToken, RoundManager, ProviderPool {
require(_amount > 0);
Provider storage p = providers[_provider];
// A delegator is only allowed to bond to himself (in which case he wants to be a Provider)
// or to a Registered provider
// or to a Registered Provider
require(_provider == msg.sender || p.status == ProviderStatus.Registered);
// Check if delegator has not already bonded to some address
require(delegators[msg.sender].delegateAddress == address(0));
Expand Down

0 comments on commit 33868ff

Please sign in to comment.