Skip to content

Commit 4585659

Browse files
committed
Format
1 parent f45ad51 commit 4585659

File tree

6 files changed

+6
-6
lines changed

6 files changed

+6
-6
lines changed

examples/sol-anchor-contract/.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,4 +4,4 @@ yarn.lock
44
target
55
**/*.rs.bk
66
node_modules
7-
test-ledger
7+
test-ledger

examples/sol-anchor-contract/Anchor.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,4 @@ url = "https://api.devnet.solana.com"
2222
address = "EdVCmQ9FSPcVe5YySXDPCRmc8aDQLKJ9xvYBMZPie1Vw"
2323

2424
[[test.validator.clone]]
25-
address = "38xoQ4oeJCBrcVvca2cGk7iV1dAfrmTR1kmhSCJQ8Jto"
25+
address = "38xoQ4oeJCBrcVvca2cGk7iV1dAfrmTR1kmhSCJQ8Jto"

examples/sol-anchor-contract/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,4 @@
1616
"typescript": "^4.9.5",
1717
"prettier": "^2.8.8"
1818
}
19-
}
19+
}

examples/sol-anchor-contract/programs/sol-anchor-contract/Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ default = []
1919
[dependencies]
2020
anchor-lang = "0.27.0"
2121
pyth-sdk = { path = "../../../../pyth-sdk", version = "0.7.0" }
22-
pyth-sdk-solana = { path = "../../../../pyth-sdk-solana", version = "0.7.2" }
22+
pyth-sdk-solana = { path = "../../../../pyth-sdk-solana", version = "0.7.2" }

examples/sol-anchor-contract/tests/sol-anchor-contract.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ describe("sol-anchor-contract", () => {
1515
const program = anchor.workspace
1616
.SolAnchorContract as anchor.Program<SolAnchorContract>;
1717
const payer = provider.wallet.publicKey;
18-
18+
1919
it("Initialize the config.", async () => {
2020
const tx = await program.methods
2121
.init({

examples/sol-anchor-contract/tsconfig.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,4 @@
1414
"target": "es6",
1515
"esModuleInterop": true
1616
}
17-
}
17+
}

0 commit comments

Comments
 (0)