Skip to content

Commit

Permalink
Fix bug returning proof
Browse files Browse the repository at this point in the history
  • Loading branch information
Arachnid committed May 14, 2021
1 parent 253e6d4 commit 8abae5e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion contracts/DNSSECImpl.sol
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ contract DNSSECImpl is DNSSEC, Owned {
for(uint i = 0; i < input.length; i++) {
proof = _submitRRSet(input[i], proof);
}
return _proof;
return proof;
}

/**
Expand Down

0 comments on commit 8abae5e

Please sign in to comment.