Skip to content

Commit

Permalink
Use defaultTrustedIssuers directly instead of getter
Browse files Browse the repository at this point in the history
  • Loading branch information
eelanagaraj committed Jun 22, 2022
1 parent 81207f8 commit 56969b8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/protocol/contracts/identity/Escrow.sol
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@ contract Escrow is
address[] memory trustedIssuers;
// If minAttestations == 0, trustedIssuers should remain empty
if (minAttestations > 0) {
trustedIssuers = getDefaultTrustedIssuers();
trustedIssuers = defaultTrustedIssuers;
}
return
_transfer(
Expand Down

0 comments on commit 56969b8

Please sign in to comment.