Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix typos #4

Open
wants to merge 4 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ dist

# Gatsby files
.cache/
# Comment in the public line in if your project uses Gatsby and *not* Next.js
# Comment in the public line if your project uses Gatsby and *not* Next.js
# https://nextjs.org/blog/next-9-1#public-directory-support
# public

Expand Down
2 changes: 1 addition & 1 deletion contracts/ManualPayloadExample.sol
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ contract ManualPayloadExample is MainDemoConsumerBase {
}

/**
* Returns the latest price of the give asset
* Returns the latest price of the given asset
* Doesn't need to be called on a wrapped contract instance
* But requires to pass a valid manual payload
*/
Expand Down
2 changes: 1 addition & 1 deletion contracts/StocksExample.sol
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ contract StocksExample is StocksDemoConsumerBase {
// // Getting data timestamp from future seems quite unlikely
// // But we've already spent too much time with different cases
// // Where block.timestamp was less than dataPackage.timestamp.
// // Some blockchains may case this problem as well.
// // Some blockchains may cause this problem as well.
// // That's why we add MAX_BLOCK_TIMESTAMP_DELAY
// // and allow data "from future" but with a small delay
// // require(
Expand Down
2 changes: 1 addition & 1 deletion test/CustomUrlsExample.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
const { WrapperBuilder } = require("@redstone-finance/evm-connector");

// Paused this example for now, since out custom URLs oracles
// Paused this example for now, since our custom URLs oracles
// Are not working properly
describe.skip("CustomUrlsExample", function () {
let contract;
Expand Down