Skip to content

Commit

Permalink
Merge branch 'master' into rossy/wa-version-1.3.1
Browse files Browse the repository at this point in the history
  • Loading branch information
jmrossy committed Jul 23, 2019
2 parents 82b9ade + 4c50620 commit 7a46a3c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/protocol/contracts/identity/Attestations.sol
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ contract Attestations is IAttestations, Ownable, Initializable, UsingRegistry {
}

// Stores attestations state for a single (identifier, account address) pair.
struct Attestations {
struct AttestationsMapping {
// Number of completed attestations
uint64 completed;
// List of issuers responsible for attestations
Expand All @@ -101,7 +101,7 @@ contract Attestations is IAttestations, Ownable, Initializable, UsingRegistry {
struct IdentifierState {
// All account addresses associated with this identifier
address[] accounts;
mapping(address => Attestations) attestations;
mapping(address => AttestationsMapping) attestations;
}

mapping(bytes32 => IdentifierState) identifiers;
Expand Down Expand Up @@ -609,7 +609,7 @@ contract Attestations is IAttestations, Ownable, Initializable, UsingRegistry {
*/
function addIncompleteAttestations(
uint256 n,
Attestations storage state
AttestationsMapping storage state
)
internal
{
Expand Down

0 comments on commit 7a46a3c

Please sign in to comment.