Go to file
Jack May 969f7b015b
Respect RefCell when calling invoke (#12858)
* Respect RefCell when calling invoke

* nudge
2020-10-15 01:06:41 +00:00
.buildkite
.github
.travis
account-decoder
accounts-bench
banking-bench
banks-client
banks-interface
banks-server
bench-exchange
bench-streamer
bench-tps
ci CI: Warn when setting up a buildkite agent with no SSH authorized_keys 2020-10-14 17:07:20 -06:00
clap-utils
cli Cleanly handle RPC servers that don't have --enable-rpc-transaction-history enabled 2020-10-13 10:05:44 -07:00
cli-config
cli-output Add transaction log messages to |solana confirm -v| output 2020-10-13 05:47:57 +00:00
client Cleanly handle RPC servers that don't have --enable-rpc-transaction-history enabled 2020-10-13 10:05:44 -07:00
core RPC: Add metrics for TX encoding 2020-10-14 12:24:11 -06:00
crate-features Bump reqwest/rayon to get past `cargo audit` 2020-10-11 18:51:09 +00:00
docs Update programming-faq.md (#12864) 2020-10-13 18:49:28 -06:00
dos Bump reqwest/rayon to get past `cargo audit` 2020-10-11 18:51:09 +00:00
download-utils Bump reqwest/rayon to get past `cargo audit` 2020-10-11 18:51:09 +00:00
explorer chore:(deps): bump @solana/web3.js from 0.80.1 to 0.80.2 in /explorer (#12874) 2020-10-14 08:12:09 +00:00
faucet
genesis
gossip
install Switch to tempfile 2020-10-11 18:51:09 +00:00
keygen
ledger Bump reqwest/rayon to get past `cargo audit` 2020-10-11 18:51:09 +00:00
ledger-tool
local-cluster
log-analyzer
logger
measure
merkle-tree
metrics Bump reqwest/rayon to get past `cargo audit` 2020-10-11 18:51:09 +00:00
multinode-demo
net
net-shaper
net-utils
notifier Bump reqwest/rayon to get past `cargo audit` 2020-10-11 18:51:09 +00:00
perf
poh-bench
programs Respect RefCell when calling invoke (#12858) 2020-10-15 01:06:41 +00:00
ramp-tps Bump reqwest/rayon to get past `cargo audit` 2020-10-11 18:51:09 +00:00
rayon-threadlimit
remote-wallet
runtime Don't report RewardType::Fee when none was awarded 2020-10-14 09:06:20 -07:00
scripts Release: Include SPL Token in release tarballs 2020-10-15 00:35:45 +00:00
sdk Respect RefCell when calling invoke (#12858) 2020-10-15 01:06:41 +00:00
stake-accounts
stake-monitor
stake-o-matic simulate_transaction_with_config() now passes full config to server 2020-10-11 21:45:00 -07:00
storage-bigtable Add log_messages to proto file (#12859) 2020-10-14 00:11:52 +00:00
streamer
sys-tuner
system-test
tokens
transaction-status
upload-perf
validator
version
vote-signer
watchtower
web3.js chore: bump rollup from 2.29.0 to 2.30.0 in /web3.js (#12873) 2020-10-14 08:21:40 +00:00
.clippy.toml
.codecov.yml
.gitignore
.mergify.yml
.travis.yml
CONTRIBUTING.md
Cargo.lock Switch accounts storage lock to DashMap (#12126) 2020-10-13 18:29:50 -07:00
Cargo.toml
LICENSE
README.md
RELEASE.md
cargo
fetch-perf-libs.sh
fetch-spl.sh
run.sh

README.md

Solana

Solana crate Solana documentation Build status codecov

Building

1. Install rustc, cargo and rustfmt.

$ curl https://sh.rustup.rs -sSf | sh
$ source $HOME/.cargo/env
$ rustup component add rustfmt

Please sure you are always using the latest stable rust version by running:

$ rustup update

On Linux systems you may need to install libssl-dev, pkg-config, zlib1g-dev, etc. On Ubuntu:

$ sudo apt-get update
$ sudo apt-get install libssl-dev libudev-dev pkg-config zlib1g-dev llvm clang

2. Download the source code.

$ git clone https://github.com/solana-labs/solana.git
$ cd solana

3. Build.

$ cargo build

4. Run a minimal local cluster.

$ ./run.sh

Testing

Run the test suite:

$ cargo test

Starting a local testnet

Start your own testnet locally, instructions are in the online docs.

Accessing the remote testnet

  • testnet - public stable testnet accessible via devnet.solana.com. Runs 24/7

Benchmarking

First install the nightly build of rustc. cargo bench requires use of the unstable features only available in the nightly build.

$ rustup install nightly

Run the benchmarks:

$ cargo +nightly bench

Release Process

The release process for this project is described here.

Code coverage

To generate code coverage statistics:

$ scripts/coverage.sh
$ open target/cov/lcov-local/index.html

Why coverage? While most see coverage as a code quality metric, we see it primarily as a developer productivity metric. When a developer makes a change to the codebase, presumably it's a solution to some problem. Our unit-test suite is how we encode the set of problems the codebase solves. Running the test suite should indicate that your change didn't infringe on anyone else's solutions. Adding a test protects your solution from future changes. Say you don't understand why a line of code exists, try deleting it and running the unit-tests. The nearest test failure should tell you what problem was solved by that code. If no test fails, go ahead and submit a Pull Request that asks, "what problem is solved by this code?" On the other hand, if a test does fail and you can think of a better way to solve the same problem, a Pull Request with your solution would most certainly be welcome! Likewise, if rewriting a test can better communicate what code it's protecting, please send us that patch!

Disclaimer

All claims, content, designs, algorithms, estimates, roadmaps, specifications, and performance measurements described in this project are done with the author's best effort. It is up to the reader to check and validate their accuracy and truthfulness. Furthermore nothing in this project constitutes a solicitation for investment.