Browse Source

Merge pull request #16 from dadepo/fix-running-counter-anchor

Fix running counter anchor
Noah Gundotra 3 years ago
parent
commit
422300e9ca

+ 1 - 1
basics/counter/anchor/Anchor.toml

@@ -9,7 +9,7 @@ url = "https://api.apr.dev"
 
 [provider]
 cluster = "localnet"
-wallet = "/Users/noahgundotra/.config/solana/id.json"
+wallet = "~/.config/solana/id.json"
 
 [scripts]
 test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"

+ 1 - 1
basics/counter/seahorse/Anchor.toml

@@ -9,7 +9,7 @@ url = "https://api.apr.dev"
 
 [provider]
 cluster = "localnet"
-wallet = "/Users/noahgundotra/.config/solana/id.json"
+wallet = "~/.config/solana/id.json"
 
 [scripts]
 test = "yarn run ts-mocha -p ./tsconfig.json -t 1000000 tests/**/*.ts"

+ 1 - 1
basics/create-account/README.md

@@ -3,7 +3,7 @@
 :wrench: We're going to create a Solana account. :wrench:   
    
 This account is going to be a **system account** - meaning it will be owned by the System Program. In short, this means only the System Program will be allowed to modify it's data.   
-   
+
 In this example, this account will simply hold some SOL.
 
 ### Links: