Skip to content

Commit 5719df5

Browse files
authored
fix typos
1 parent fe64715 commit 5719df5

File tree

1 file changed

+2
-2
lines changed
  • src/content/developers/docs/oracles

1 file changed

+2
-2
lines changed

src/content/developers/docs/oracles/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ contract Oracle {
173173
uint currentQuorum = 0;
174174
175175
//iterate through oracle list and check if enough oracles(minimum quorum)
176-
//have voted the same answer has the current one
176+
//have voted the same answer as the current one
177177
for(uint i = 0; i < totalOracleCount; i++){
178178
bytes memory a = bytes(currRequest.answers[i]);
179179
bytes memory b = bytes(_valueRetrieved);
@@ -236,7 +236,7 @@ Centralized oracles aren't guaranteed to always make off-chain data available to
236236

237237
#### Poor incentive compatibility {#poor-incentive-compatibility}
238238

239-
Centralized oracles often have poorly designed or non-existent incentives for the data provider to send accurate/unaltered information. Paying an oracle for for correctness does not guarantee honesty. This problem gets bigger as the amount of value controlled by smart contracts increases.
239+
Centralized oracles often have poorly designed or non-existent incentives for the data provider to send accurate/unaltered information. Paying an oracle for correctness does not guarantee honesty. This problem gets bigger as the amount of value controlled by smart contracts increases.
240240

241241
### Decentralized oracles {#decentralized-oracles}
242242

0 commit comments

Comments
 (0)