Skip to content
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
7 changes: 3 additions & 4 deletions rust-counter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Simple counter program using Rust Native and Ephemeral Rollups

## Software Packages

This program has utilized the following sofware packages.
This program has utilized the following software packages.

| Software | Version | Installation Guide |
| ---------- | ------- | ------------------------------------------------------- |
Expand All @@ -21,7 +21,6 @@ agave-install init 2.3.13
rustup show
rustup install 1.85.0


## ✨ Build and Test

Build and deploy the program:
Expand All @@ -31,10 +30,10 @@ cargo build-sbf
solana program deploy target/deploy/rust_counter.so
````

Add wallet (if not a new keypair will be generated) and RPC endpoints to the file example.env and update filename to .env:
Add wallet (if not a new keypair will be generated) and RPC endpoints to the file `example.env` and update filename to `.env`:

```bash
PRIVATE_KEY=
PRIVATE_KEY=<YOUR-PRIVATE-KEY>
```

Run the tests:
Expand Down
2 changes: 1 addition & 1 deletion rust-counter/tests/kit/rust-counter.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@ describe("basic-test", async () => {
it(
"Initialize counter on Solana",
async () => {
const start = Date.now();``
const start = Date.now();

// Prepare transaction
const accounts = [
Expand Down