Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main' into clean-code
Browse files Browse the repository at this point in the history
  • Loading branch information
zurgl committed Dec 17, 2021
2 parents 4c4dfe9 + 1e085bb commit 099a60c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions markdown/solana/TRANSFER_TOKEN.md
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ In `pages/api/solana/transfer.ts` finish implementing the `transfer()` function.
**Take a few minutes to figure this out.**

```typescript
//.. let's snip the beginning as it should be familiar for you by now!
//.. let's skip the beginning as it should be familiar for you by now!
// Find the parameter to pass
const instructions = SystemProgram.transfer;

Expand Down Expand Up @@ -42,7 +42,7 @@ Still not sure how to do this? No problem! The solution is below so you don't ge

```typescript
// solution
//... let's snip the beginning as it should be familiar for you by now!
//... let's skip the beginning as it should be familiar for you by now!
const instructions = SystemProgram.transfer({
fromPubkey,
toPubkey,
Expand Down
2 changes: 1 addition & 1 deletion markdown/the_graph/GRAPH_NODE.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ Attaching to docker_postgres_1, docker_ipfs_1, docker_graph-node_1
## ✅ Make sure it works

The same way that a local web server usually listens for connections on `localhost://3000`, our local Graph node is listening for connections on `localhost://8020`.
The same way that a local web server usually listens for connections on `localhost:3000`, our local Graph node is listening for connections on `localhost:8020`.

Click on the button **Test local Graph node** to make sure it's running!

Expand Down

0 comments on commit 099a60c

Please sign in to comment.