Trent Nelson
f55e637796
CI: Drop redundant cargo audit run
...
There is a Cargo.lock in this dir, so `scripts/cargo-for-all-lock-files.sh ...` covers it
2020-10-02 17:53:45 -07:00
Trent Nelson
7e57c5cefe
CI: Split cargo-audit off to its own buildkite job run with cargo 1.46.0
...
Needed to support new cargo audit advisory format https://github.com/RustSec/advisory-db/issues/414
2020-10-02 17:53:45 -07:00
Michael Vines
f7a87291c3
Expose validator cli arguments for pubsub buffer tuning
2020-10-02 11:53:07 -07:00
Michael Vines
20613d66f0
Bump version to v1.2.33
2020-10-02 08:25:48 -07:00
Michael Vines
90faffdb92
Revert "don't commit! disable audit"
...
This reverts commit b5305587ea
.
2020-10-02 08:20:13 -07:00
Jack May
8c989da683
Fix zero-len slice translations
2020-10-02 08:17:59 -07:00
Jack May
b5305587ea
don't commit! disable audit
2020-10-02 08:17:00 -07:00
Jack May
a61d24bfa9
Check CPI program is executable
2020-10-02 08:17:00 -07:00
mergify[bot]
c162ac27dd
Add ci env to travis config ( #12608 ) ( #12609 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit a17907b9a2
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-10-01 06:11:38 +00:00
mergify[bot]
2b22ef1650
Tighten docs publishing flow ( #12572 ) ( #12593 )
...
(cherry picked from commit ede19ef33b
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-09-30 18:42:27 +00:00
Michael Vines
456e300244
Bump version to v1.2.32
2020-09-29 22:33:41 +00:00
mergify[bot]
27948563f5
Switch get_program_accounts to use base64 ( #12558 )
...
(cherry picked from commit 182552c2e7
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-29 20:33:59 +00:00
mergify[bot]
af91768a24
Increase rpc pubsub max payload to unblock large account notifications ( #12548 ) ( #12550 )
...
(cherry picked from commit 36d55c0667
)
Co-authored-by: Justin Starry <justin@solana.com >
2020-09-29 17:32:29 +00:00
Michael Vines
94102f4501
Cargo.lock
2020-09-28 13:00:46 -07:00
Michael Vines
f53e0af159
Bump version to v1.2.31
2020-09-28 12:59:47 -07:00
mergify[bot]
227804c306
Improve 'Failed to create snapshot archive' warning message (bp #12496 ) ( #12499 )
...
* Improve 'Failed to create snapshot archive' warning message
(cherry picked from commit 5dcf348098
)
# Conflicts:
# ledger/src/snapshot_utils.rs
* Update snapshot_utils.rs
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-26 01:12:39 +00:00
Trent Nelson
4fd298abd5
Bump jsonrpc crates to 15.0.0 (bp #12491 )
2020-09-25 20:24:39 +00:00
mergify[bot]
7a33ef1547
Ignore cargo audit RUSTSEC-2020-0008 (bp #12485 ) ( #12488 )
...
* Ignore cargo audit RUSTSEC-2020-0008
(cherry picked from commit cd5c7f30d5
)
# Conflicts:
# ci/test-checks.sh
* conflicts
Co-authored-by: Jack May <jack@solana.com >
2020-09-25 10:06:12 -07:00
Trent Nelson
f4a2045876
CLI: Factor out offline helpers (bp #12382 )
2020-09-24 03:10:04 +00:00
mergify[bot]
dfabe35b27
Move dropping AppendVecs outside lock ( #12408 ) ( #12428 )
...
* Move drop outside lock
Co-authored-by: Carl Lin <carl@solana.com >
(cherry picked from commit 55be8d4016
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-23 23:27:56 +00:00
mergify[bot]
75fec798bc
patches default impl for crds filter (bp #12199 ) ( #12418 )
...
* patches default impl for crds filter (#12199 )
In CrdsFilter.mask all bits after mask_bits are set to 1:
https://github.com/solana-labs/solana/blob/555252f4/core/src/crds_gossip_pull.rs#L65
However the default implementation, sets both mask and mask_bits to zero
which is inconsistent with CrdsFilter::compute_mask for a mask_bits of
zero.
This commit changes the default implementation by setting mask to
`!0u64` (i.e all bits set to one). As a result, for the default crds
filter, `test_mask` will always return true, whereas previously it was
always returning false.
https://github.com/solana-labs/solana/blob/555252f4/core/src/crds_gossip_pull.rs#L85
This is only used in tests and benchmarks, but causes some benchmarks to
be misleading by short circuiting in this line:
https://github.com/solana-labs/solana/blob/555252f4/core/src/crds_gossip_pull.rs#L429
(cherry picked from commit d6ec03f13c
)
# Conflicts:
# core/src/crds_gossip_pull.rs
* resolves mergify merge conflict
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
2020-09-23 22:06:33 +00:00
mergify[bot]
0c4743df03
RpcClient::get_multiple_accounts() now works ( #12426 )
...
(cherry picked from commit ff890c173c
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-23 21:58:23 +00:00
mergify[bot]
29f9c1e1f2
uses rust intrinsics to convert hashes to u64 ( #12097 ) ( #12379 )
...
(cherry picked from commit 28f2fa3fd5
)
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
2020-09-23 14:59:12 +00:00
mergify[bot]
c4609d0b6d
Fix solana-tokens check_payer_balances for distribute-stake (bp #12380 ) ( #12403 ) ( #12407 )
...
* Fix solana-tokens check_payer_balances for distribute-stake (#12380 )
* Handle distribute-stakes properly
* Remove dry-run gating for balance checks
* Reword and simplify InsufficientFunds errors
* Split up test and add helpers
* Rename sol_for_fees -> unlocked_sol
* Refactor distribute_allocations to collect Messages
* Clippy
* Clean up dangling bids
(cherry picked from commit 6563726f22
)
# Conflicts:
# tokens/src/commands.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
(cherry picked from commit 5366a3c887
)
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-09-23 06:44:55 +00:00
Trent Nelson
3b70849885
validator: Add --require-tower stub arg
2020-09-23 05:06:37 +00:00
mergify[bot]
5979005454
adds new CrdsFilterSet type for Vec<CrdsFilter> (bp #12029 ) ( #12378 )
...
* adds new CrdsFilterSet type for Vec<CrdsFilter> (#12029 )
(cherry picked from commit 114c211b66
)
# Conflicts:
# core/src/crds_gossip_pull.rs
* resolves mergify merge conflict
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
2020-09-23 03:59:20 +00:00
mergify[bot]
27c8e7b905
Bump spl-token (bp #12395 ) ( #12399 )
...
* Bump spl-token (#12395 )
(cherry picked from commit e1a212fb79
)
# Conflicts:
# Cargo.lock
# account-decoder/Cargo.toml
# core/Cargo.toml
# transaction-status/Cargo.toml
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-09-23 01:17:44 +00:00
Ryo Onodera
3612964a58
Adjust bpf epoch for tests, not effecting prod. ( #12387 )
...
* Adjust bpf epoch for tests, not effecting prod.
* Fix local cluster test...
2020-09-23 04:55:08 +09:00
Tyera Eulberg
495e237935
Add PerfSamples column to blockstore ( #12377 )
...
* Add blockstore column to store performance sampling data
* Add PerfSamples to purge/compaction
2020-09-22 13:32:16 -06:00
Ryo Onodera
1757cb85a1
Update comment
2020-09-21 18:59:17 -06:00
Ryo Onodera
b10fb46a4b
Update test hash to align across branches finally
2020-09-21 18:59:17 -06:00
Ryo Onodera
7045aa9760
Improve pre-operating-mode-based hashing gating
2020-09-21 18:59:17 -06:00
mergify[bot]
e371681f53
CLI: Drop unused runtime dep ( #12373 )
...
(cherry picked from commit 6767264aa1
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-09-21 20:50:38 +00:00
mergify[bot]
e972db03bd
Add blocktime column to blockstore (bp #12336 ) ( #12341 )
...
* Add blocktime column to blockstore (#12336 )
(cherry picked from commit 95ed3641c6
)
# Conflicts:
# ledger/src/blockstore_db.rs
* Fix conflict
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-09-18 23:08:34 +00:00
Justin Starry
a8f7a0c648
Bump version to 1.2.30 ( #12301 )
2020-09-17 11:25:14 +08:00
mergify[bot]
687254497c
Restore --expected-shred-version argument for mainnet-beta ( #12299 )
...
(cherry picked from commit 9410eab2af
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-17 01:19:30 +00:00
mergify[bot]
b8932ad0c8
RPC: Limit request payload size to 50kB ( #12286 )
...
(cherry picked from commit 32dcce0ac1
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-09-16 23:50:11 +00:00
Tyera Eulberg
1d4dbe0090
v1.2: Remove client resends ( #12292 )
...
* Remove resends from client send_tx methods
* Retry status queries until blockhash expires
2020-09-16 17:48:02 -06:00
mergify[bot]
1f8e9c2364
builds crds filters without looping over filters ( #11998 ) ( #12291 )
...
(cherry picked from commit bc7adb97ed
)
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
2020-09-16 23:35:06 +00:00
mergify[bot]
ac07fb392d
Fix off-by-one max payload checks (bp #12230 ) ( #12284 )
...
* Fix off-by-one max payload checks
(cherry picked from commit f6cda2579f
)
# Conflicts:
# faucet/src/faucet.rs
* Update faucet.rs
Co-authored-by: Justin Starry <justin@solana.com >
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-16 21:09:20 +00:00
Tyera Eulberg
a492357964
v1.2: Backports of solana tokens improvements, including transfer to many arg ( #12278 )
...
* Clean up solana-tokens (#10667 )
* Use a trait object in solana-tokens' ThinClient
* Inline arg resolution
Not worth the code complexity
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
* Add lockups via solana-tokens (bp #11782 ) (#12263 )
* Add lockups via solana-tokens (#11782 )
* Allow stake distributions to update lockups
* Reorg
* Add lockup test
* Fix clippy warning
(cherry picked from commit 5553732ae2
)
* Fix build
Co-authored-by: Greg Fitzgerald <greg@solana.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
* Improve solana-tokens UX (#12253 ) (#12260 )
* Fix computed banks port
* Readme incorrect
* Return error if csv cannot be read
* Move column headers over columns
* Add dry-run check for sender/fee-payer balances
* Use clap requires method for paired args
* Write transaction-log anytime outfile is specified
* Replace campaign-name with required db-path
* Remove bids
* Exclude new_stake_account_address from logs for non-stake distributions
* Fix readme
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
* solana-tokens: Add capability to perform the same transfer to a batch of recipients (bp #12259 ) (#12266 )
* solana-tokens: Add capability to perform the same transfer to a batch of recipients (#12259 )
* Add transfer-amount argument, use simplified input-csv
* Add transfer-amount to readme
(cherry picked from commit a48cc073cf
)
# Conflicts:
# tokens/src/commands.rs
# tokens/tests/commands.rs
* Fix build
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
Co-authored-by: Greg Fitzgerald <greg@solana.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-09-16 17:42:31 +00:00
mergify[bot]
e0bb26d9db
RPC sendTransaction now returns transaction logs on simulation failure (bp #12267 ) ( #12275 )
...
* RPC sendTransaction now returns transaction logs on simulation failure
(cherry picked from commit 749208fa32
)
# Conflicts:
# core/src/rpc.rs
* Remove stale comment
(cherry picked from commit c6eea94edc
)
# Conflicts:
# core/src/rpc.rs
* Resolve merge conflicts
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-16 17:32:55 +00:00
mergify[bot]
d687dd9f13
validator-info get/set
no longer crash on invalid account data (#12257 )
...
(cherry picked from commit 56282f0c01
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-16 01:18:36 +00:00
mergify[bot]
4b649a71df
Drop the recommendation that --expected-shred-version
be set by validators (bp #12242 ) ( #12243 )
...
* Drop the recommendation that `--expected-shred-version` be set by validators
`--expected-shred-version` is another knob for users to get wrong and is
documentation that can get stale due to cluster restarts. Turns out
it's also generally not required anymore either because:
1. The cluster entrypoint can always be expected to be using the correct
shred version, and that shred version will be adopted by the new node
(earlier this was not the case when the `solana-gossip spy` node on
mainnet-beta.solana.com:8001 ran with shred version 0)
2. On a cluster restart, `--expected-bank-hash` is a much stronger
assertion that the validator is starting from the correct place (and
didn't exist when `--expected-shred-version` was first recommended)
(cherry picked from commit 4ada4d43f2
)
# Conflicts:
# docs/src/clusters.md
# docs/src/running-validator/restart-cluster.md
* Update clusters.md
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-15 17:43:00 +00:00
Michael Vines
388a285517
Update Cargo.lock
2020-09-15 09:46:20 -07:00
mergify[bot]
45c368d670
Add new validator options for running in more restrictive environments (bp #12191 ) ( #12217 )
...
* Add --restricted-repair-only-mode flag
(cherry picked from commit 63a67f415e
)
# Conflicts:
# validator/src/main.rs
* Add --gossip-validator argument
(cherry picked from commit daae638781
)
# Conflicts:
# core/src/crds_gossip_pull.rs
# core/src/crds_gossip_push.rs
# core/src/gossip_service.rs
# validator/src/main.rs
* Documenet how to reduce validator port exposure
(cherry picked from commit c8f03c7f6d
)
* Resolve conflicts
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-15 04:44:04 +00:00
mergify[bot]
bf5609b4fc
Fix propagation on startup from snapshot ( #12177 ) ( #12198 )
...
(cherry picked from commit 9c490e06b0
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-12 04:44:00 +00:00
Michael Vines
d8c0633f0f
Add bank-hash subcommand
...
(cherry picked from commit a07980536a
)
2020-09-10 10:13:54 -06:00
sakridge
aebb8187a8
Add --print-account-stats/--snapshot-archive-path arguments to ledger-tool ( #10945 )
...
Allows for seeing how the accounts are being stored
and specifying a different snapshot source directory.
(cherry picked from commit 6429042b6e
)
2020-09-10 10:13:54 -06:00
Trent Nelson
159722a960
genesis: Half-support new --cluster-type on v1.2
...
Just map these values onto OperatingMode
2020-09-10 05:25:46 +00:00
mergify[bot]
c5b36cf18c
Specify loader when bootstrapping bpf programs ( #11571 ) ( #12145 )
...
(cherry picked from commit 0a94e7e7fa
)
Co-authored-by: Jack May <jack@solana.com >
2020-09-10 03:51:20 +00:00
mergify[bot]
fae90ff397
Program subscriptions now properly check results len and token program id ( #12139 ) ( #12140 )
...
(cherry picked from commit 4431080066
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-09 22:20:59 +00:00
mergify[bot]
a91a106319
Make ledger-tool accounts print rent_epoch and slot ( #11845 ) ( #12125 )
...
(cherry picked from commit 57174cdabe
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-09 07:12:35 +00:00
mergify[bot]
7c8debd14a
RPC: getMinimumBalanceForRentExemption now only responds to valid account lengths (bp #12113 ) ( #12115 )
...
* getMinimumBalanceForRentExemption now only responds to valid account lengths
(cherry picked from commit 9e96180ce4
)
# Conflicts:
# core/src/rpc.rs
* Update rpc.rs
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-08 19:28:07 +00:00
mergify[bot]
9c64e5e3b1
Fix RPC transaction method options serialization (bp #12100 ) ( #12101 )
...
* Fix RPC transaction method configs serialization (#12100 )
(cherry picked from commit 9940870c89
)
# Conflicts:
# core/src/rpc.rs
* Update rpc.rs
Co-authored-by: Justin Starry <justin@solana.com >
2020-09-08 09:40:47 +00:00
mergify[bot]
e48ce1e682
Compress snapshot archive within the validator to reduce system dependencies, and default to zstd compression (bp #12085 ) ( #12086 )
...
* Compress snapshot archive within the validator to reduce system dependencies
(cherry picked from commit d3750b47d2
)
* Default snapshot compression to zstd instead of bzip2 for quicker snapshot generation
(cherry picked from commit 9ade73841f
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-07 07:03:59 +00:00
Michael Vines
2c239904cc
Bump version to 1.2.29
2020-09-04 22:37:52 -07:00
Michael Vines
9e459f0093
Bump version to 1.2.28
2020-09-04 20:00:27 -07:00
Tyera Eulberg
166251fccd
v1.2: Bigtable bug fixes ( #12059 )
...
* Accommodate stricted get_bincode_cell in get_confirmed_signatures_for_address
* Sort signatures newest-oldest, even within slot
2020-09-04 20:29:03 -06:00
mergify[bot]
ebbb106fb7
Add unlock epochs for blake3 (bp #12054 ) ( #12055 )
...
* Add unlock epochs for blake3 (#12054 )
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit a13efc52b3
)
# Conflicts:
# runtime/src/accounts_db.rs
* Resolve conflicts
* Bump hash
Co-authored-by: carllin <wumu727@gmail.com >
Co-authored-by: Carl <carl@solana.com >
2020-09-05 00:42:16 +00:00
Michael Vines
a018d78056
Add LARGEST_CONFIRMED_ROOT_UPLOAD_DELAY
2020-09-04 23:42:25 +00:00
Michael Vines
67daa6f01e
Request correct access
2020-09-04 23:42:25 +00:00
Michael Vines
d5aa648947
Remove dead code
2020-09-04 23:42:25 +00:00
Michael Vines
acfd72d7c4
Adapt to v1.2
2020-09-04 23:42:25 +00:00
Michael Vines
096d9ce5c7
Cargo.lock
2020-09-04 23:42:25 +00:00
Michael Vines
a8e522702c
Add exit flag for bigtable upload operations
2020-09-04 23:42:25 +00:00
Michael Vines
e3753186af
Add BigTableUploadService
2020-09-04 23:42:25 +00:00
Michael Vines
82d9624736
Relocate BigTable uploader to ledger/ crate
2020-09-04 23:42:25 +00:00
Michael Vines
6101c1d690
Add --enable-bigtable-ledger-upload flag
2020-09-04 23:42:25 +00:00
carllin
7b7b7be99c
Forward transactions to the expected leader instead of your own TPU port ( #12012 )
...
Co-authored-by: Carl <carl@solana.com >
2020-09-04 15:22:18 -07:00
mergify[bot]
2b4af48537
Switch account hashing to blake3 (bp #11969 ) ( #11991 )
...
* Switch account hashing to blake3 (#11969 )
* Switch account hashing to blake3
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit af08221aec
)
# Conflicts:
# programs/bpf/Cargo.lock
# runtime/src/accounts.rs
# runtime/src/accounts_db.rs
# runtime/src/serde_snapshot.rs
* Resolve conflicts
Co-authored-by: carllin <wumu727@gmail.com >
Co-authored-by: Carl <carl@solana.com >
2020-09-04 20:47:25 +00:00
mergify[bot]
2a842408bd
Bump getMultipleAccounts input limit ( #12050 ) ( #12051 )
...
(cherry picked from commit 954b017f85
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-04 19:10:12 +00:00
Michael Vines
755ccbc253
Update devnet activation epoch for token2 native mint
2020-09-04 06:55:36 +00:00
mergify[bot]
cf0de48dc0
Mark a withdraw authority as non-circulating ( #12033 ) ( #12035 )
...
(cherry picked from commit 2c091e4fca
)
Co-authored-by: Greg Fitzgerald <greg@solana.com >
2020-09-04 01:07:53 +00:00
mergify[bot]
d44058edc3
Don't query modern Ledger wallet app version with deprecated payload size ( #12030 )
...
(cherry picked from commit dff8242887
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-09-03 22:20:05 +00:00
mergify[bot]
5496d52097
Rpc: add getMultipleAccounts endpoint (bp #12005 ) ( #12023 )
...
* Rpc: add getMultipleAccounts endpoint (#12005 )
* Add rpc endpoint to return the state of multiple accounts from the same bank
* Add docs
* Review comments: Dedupe account code, default to base64, add max const
* Add get_multiple_accounts to rpc-client
(cherry picked from commit b22de369b7
)
# Conflicts:
# core/src/rpc.rs
* Fix conflicts
* Use new_response for consistency
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-09-03 19:52:25 +00:00
mergify[bot]
b4da705f97
Update token amounts in parsed instructions to retain full precision ( #12020 ) ( #12021 )
...
(cherry picked from commit b940da4040
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-03 19:41:20 +00:00
mergify[bot]
75d334147c
Fix forwarding calculation ( #12014 ) ( #12018 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 3f39ab1e04
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-03 10:44:19 +00:00
mergify[bot]
006d36dd95
Bigtable method to return a single row of data ( #11999 ) ( #12001 )
...
(cherry picked from commit b041afe1be
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-02 20:53:44 +00:00
mergify[bot]
8c9e17bbab
Docs.rs version replacement ( #11981 ) ( #11983 )
...
(cherry picked from commit b720921c83
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-01 15:15:08 -06:00
mergify[bot]
42017ebe69
Ensure that the spl-token 2 native mint account is owned by the spl-token 2 program. ( #11973 )
...
Workaround for https://github.com/solana-labs/solana-program-library/issues/374 until spl-token 3 is shipped
(cherry picked from commit 7341e60043
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-01 19:32:52 +00:00
mergify[bot]
b34f179546
Update to rayon 1.4.0 (bp #11898 ) ( #11959 )
...
* Update to rayon 1.4.0 (#11898 )
Co-authored-by: sakridge <sakridge@gmail.com >
Co-authored-by: Carl <carl@solana.com >
2020-08-31 20:38:33 -07:00
mergify[bot]
1afd1db4fc
generate_pull_response optimization (bp #11597 ) ( #11954 )
...
* generate_pull_response optimization (#11597 )
(cherry picked from commit f519fdecc2
)
# Conflicts:
# core/src/crds_gossip_pull.rs
* Fix merge conflicts
Co-authored-by: sakridge <sakridge@gmail.com >
Co-authored-by: Carl <carl@solana.com >
2020-09-01 01:21:57 +00:00
mergify[bot]
daba428a3d
Remove log ( #11949 ) ( #11960 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 7641b60a2b
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-01 01:13:51 +00:00
mergify[bot]
11f4443a7b
Add missing backslash to solana-validator command ( #11957 )
...
(cherry picked from commit a19f696a42
)
Co-authored-by: Richard Ayotte <rich.ayotte@gmail.com >
2020-08-31 23:41:52 +00:00
mergify[bot]
a8eea4f42d
Increase message_processor logging to error level ( #11945 ) ( #11947 )
...
(cherry picked from commit 9b9d559312
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-08-31 21:55:07 +00:00
mergify[bot]
18e7112608
Fix get_parsed_token_accounts ( #11907 ) ( #11908 )
...
(cherry picked from commit 60c7ac6f95
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-29 20:07:04 +00:00
Michael Vines
857e44c147
Update to spl-token 2
2020-08-29 09:24:35 -07:00
Tyera Eulberg
bd0536c80f
Bump spl-token version
2020-08-29 02:22:33 -06:00
Tyera Eulberg
184e4253c7
Update to token pack/unpack changes ( #11901 )
2020-08-29 04:57:09 +00:00
mergify[bot]
5828d2cff7
Update spl-token to v2.0 (bp #11884 ) ( #11896 )
...
* Update spl-token to v2.0 (#11884 )
* Update account-decoder to spl-token v2.0
* Update transaction-status to spl-token v2.0
* Update rpc to spl-token v2.0
* Update getTokenSupply to pull from Mint directly
* Fixup to spl-token v2.0.1
(cherry picked from commit 76be36c9ce
)
# Conflicts:
# Cargo.lock
# account-decoder/Cargo.toml
# core/Cargo.toml
# core/src/rpc.rs
# transaction-status/Cargo.toml
* Fix non-Cargo.lock conflicts
* Limited Deserialize isn't limiting anything (#10952 )
* Add failing test
* Use deserialize_from to enable limit
* Cargo.lock
* chore(deps): bump bincode from 1.2.1 to 1.3.1 (#10867 )
* chore(deps): bump bincode from 1.2.1 to 1.3.1
Bumps [bincode](https://github.com/servo/bincode ) from 1.2.1 to 1.3.1.
- [Release notes](https://github.com/servo/bincode/releases )
- [Commits](https://github.com/servo/bincode/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
* Switch from deprecated method
* Add options to maintain behavior with bincode::options()
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-08-29 01:27:10 +00:00
Jack May
eeb7503fb6
Revert "Align host addresses ( #11384 ) ( #11836 )" ( #11876 )
...
This reverts commit 3296c13ef2
.
2020-08-27 16:19:05 +00:00
Jack May
7e1aa02ce4
Revert "Make BPF Loader static (bp #11516 ) ( #11865 )" ( #11871 )
...
This reverts commit 81db361d77
.
2020-08-27 06:48:21 +00:00
Jack May
734e669581
Revert "cli: Add (hidden) --use-deprecated-loader flag to solana deploy
(bp #11675 ) ( #11866 )" ( #11872 )
...
This reverts commit 97c3ff8a4f
.
2020-08-27 06:44:06 +00:00
mergify[bot]
81db361d77
Make BPF Loader static (bp #11516 ) ( #11865 )
...
* Make BPF Loader static (#11516 )
(cherry picked from commit 7c736f71fe
)
# Conflicts:
# Cargo.lock
# core/Cargo.toml
# core/src/lib.rs
# core/src/validator.rs
# genesis/src/main.rs
# programs/bpf/tests/programs.rs
# runtime/src/builtin_programs.rs
# runtime/src/lib.rs
* resolve conflicts
* nudge
Co-authored-by: Jack May <jack@solana.com >
2020-08-27 01:00:24 +00:00
mergify[bot]
97c3ff8a4f
cli: Add (hidden) --use-deprecated-loader flag to solana deploy
(bp #11675 ) ( #11866 )
...
* Add (hidden) --use-deprecated-loader flag to `solana deploy`
(cherry picked from commit de736e00ad
)
# Conflicts:
# cli/src/cli.rs
# cli/tests/deploy.rs
* resolve conflicts
Co-authored-by: Michael Vines <mvines@gmail.com >
Co-authored-by: Jack May <jack@solana.com >
2020-08-27 00:36:12 +00:00
mergify[bot]
5f85ecd457
Merge pull request #11857 from mvines/cache ( #11862 )
...
ci: cargo-target-cache is now channel specific
(cherry picked from commit 5c7080c1f4
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-08-26 19:58:36 +00:00
mergify[bot]
fb1985fe5e
Rpc: Filter accounts with invalid mints from get_parsed_token_accounts ( #11844 ) ( #11858 )
...
* Filter out accounts with invalid mints from get_parsed_token_accounts
* Explicit docs
(cherry picked from commit 1988ee9cd6
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-26 19:07:23 +00:00
mergify[bot]
3296c13ef2
Align host addresses ( #11384 ) ( #11836 )
...
* Align host addresses
* support new program abi
* update epoch rollout
* Enforce aligned pointers in cross-program invocations
(cherry picked from commit 9290e561e1
)
# Conflicts:
# programs/bpf_loader/src/lib.rs
Co-authored-by: Jack May <jack@solana.com >
2020-08-26 00:19:38 +00:00
mergify[bot]
b8cc10749a
Re-route program logging (bp #10528 ) ( #11838 )
...
* Route all loader messages to log collector (#10528 )
(cherry picked from commit b6a9573748
)
# Conflicts:
# Cargo.lock
# programs/bpf/Cargo.lock
# programs/bpf/benches/bpf_loader.rs
# programs/bpf_loader/Cargo.toml
# programs/bpf_loader/src/syscalls.rs
# runtime/src/message_processor.rs
# sdk/src/entrypoint_native.rs
* resolve conflicts
* nudge
Co-authored-by: Jack May <jack@solana.com >
2020-08-25 21:09:24 +00:00
mergify[bot]
c1f9a9a021
Update system tuning and docs (bp #11680 ) ( #11829 )
...
* Sync FD limit and max maps to 500k
(cherry picked from commit 11951eb009
)
* Expand system tuning docs
(cherry picked from commit 5354df8c1c
)
* clippy
Co-authored-by: Trent Nelson <trent@solana.com >
2020-08-25 20:39:00 +00:00
mergify[bot]
f88b0c4827
Bump MacOS nofile recommendation message ( #11834 )
...
(cherry picked from commit 8841c3398c
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-08-25 19:52:22 +00:00
mergify[bot]
c3564203e9
Document how to validate account pubkey ( #11821 ) ( #11832 )
...
(cherry picked from commit 2c5366f259
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-08-25 16:29:20 +00:00
mergify[bot]
de4e548105
sdk: Make PubKey::create_program_address available in program unit tests (bp #11745 ) ( #11809 )
...
* sdk: Make PubKey::create_program_address available in program unit tests (#11745 )
* sdk: Make PubKey::create_program_address available in program unit tests
This finishes the work started in #11604 to have
`create_program_address` available when `target_arch` is not `bpf` and
`program` is enabled. Otherwise, there is an undefined reference error
to `sol_create_program_address`, which is only defined in `bpf`.
A small test to simply call the function has been added in order to catch
the problem in the future.
The default dependency to `solana-sdk/default` doesn't cause a problem with
existing programs since `build.sh` always specifies
`--no-default-features`, and programs in `solana-program-library` all
use it too.
* Add `default-features = false` for inter-program dependencies
Fix the build error found during CI. The `--no-default-features` flag
only applies to the top-level package, and not to dependencies. A program that
depends on another program, i.e. `128bit` which depends on `128bit_dep`,
must specify `default-features = false` when including that package,
otherwise the `bpf` build will try to pull in default packages, which
includes `std`.
(cherry picked from commit 9a366281d3
)
# Conflicts:
# programs/bpf/rust/128bit/Cargo.toml
# programs/bpf/rust/invoke/Cargo.toml
# programs/bpf/rust/many_args/Cargo.toml
# programs/bpf/rust/param_passing/Cargo.toml
* Fix merge conflicts
Co-authored-by: Jon Cinque <jon.cinque@gmail.com >
2020-08-24 21:30:15 +00:00
mergify[bot]
8d67204123
Return an error from create_program_address syscall (bp #11658 ) ( #11788 )
...
* Return an error from create_program_address syscall (#11658 )
(cherry picked from commit 750e5344f1
)
# Conflicts:
# programs/bpf/rust/invoke/src/lib.rs
# programs/bpf_loader/src/syscalls.rs
* resolve conflicts
Co-authored-by: Jack May <jack@solana.com >
2020-08-24 05:03:27 +00:00
mergify[bot]
99a01abfd7
RPC: Allow the sendTransaction preflight commitment level to be configured (bp #11792 ) ( #11793 )
...
* Allow the sendTransaction preflight commitment level to be configured
(cherry picked from commit b660704faa
)
# Conflicts:
# cli/src/cli.rs
# core/src/rpc.rs
* rebase
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-08-22 17:00:49 +00:00
Michael Vines
973b00debb
Fix typo
2020-08-22 09:23:12 -07:00
mergify[bot]
900139da3e
Fix region check (bp #11651 ) ( #11784 )
...
* fix region checks (#11651 )
(cherry picked from commit 768b386f0a
)
# Conflicts:
# sdk/src/pubkey.rs
* resolve conflicts
Co-authored-by: Jack May <jack@solana.com >
2020-08-22 03:12:55 +00:00
mergify[bot]
d94ad7523b
Unified signature for create_program_address ( #11460 ) ( #11783 )
...
(cherry picked from commit 140b2392f6
)
Co-authored-by: Jack May <jack@solana.com >
2020-08-22 00:37:31 +00:00
mergify[bot]
4e0dbd6a73
Fix filter_crds_values output alignment with the inputs (bp #11734 ) ( #11780 )
...
* Fix filter_crds_values output alignment with the inputs (#11734 )
(cherry picked from commit 418b483af6
)
# Conflicts:
# core/src/crds_gossip_pull.rs
* Resolve conflicts
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
Co-authored-by: Carl <carl@solana.com >
2020-08-21 22:24:48 +00:00
mergify[bot]
9ee69017dc
Add option for repairing only from trusted validators ( #11752 ) ( #11772 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit c8d67aa8eb
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-08-21 09:01:39 +00:00
mergify[bot]
7c956a87e5
Rpc: Return error if block does not exist ( #11743 ) ( #11748 )
...
* Return error if block does not exist
* Update docs
(cherry picked from commit 747f8d5877
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-20 22:52:18 +00:00
Trent Nelson
0beb443d44
Bump version to 1.2.27
2020-08-20 13:32:49 -06:00
mergify[bot]
5d8ae9628c
Do not delete any ledger when --limit-ledger-size
is not provided ( #11740 )
...
(cherry picked from commit ea88bbdc33
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-08-20 19:08:21 +00:00
mergify[bot]
de76df0cbb
Bump spl-token to clean up magic number (bp #11726 ) ( #11737 )
...
* Bump spl-token to clean up magic number (#11726 )
(cherry picked from commit 2fd2aceeb2
)
# Conflicts:
# account-decoder/Cargo.toml
# core/Cargo.toml
# transaction-status/Cargo.toml
* Fix conflicts and toml order
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-20 17:35:28 +00:00
Justin Starry
a0190b4105
Hotfix for enabling CPI ( #11728 )
2020-08-20 15:41:37 +08:00
carllin
5255a6ebd2
Cleanup test utilities ( #11725 )
...
Co-authored-by: Carl <carl@solana.com >
2020-08-20 00:10:18 -07:00
mergify[bot]
8575514235
Allow votes to timestamp subsequent slots with the same timestamp ( #11715 ) ( #11719 )
...
(cherry picked from commit b1bc901a66
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-20 02:00:32 +00:00
Trent Nelson
2a1946436b
Bump version to 1.2.26
2020-08-19 20:33:40 +00:00
Michael Vines
80649a9c3d
Revert "Revert "rpc: rework binary encoding. BREAKING CHANGE (bp #11646 ) ( #11673 )""
...
This reverts commit fb90fb3feb
.
2020-08-18 21:25:31 -07:00
Michael Vines
ad74ba0eb0
The end_slot argument to purge is now optional
2020-08-19 03:19:02 +00:00
mergify[bot]
fd41ad5d8f
Remove old signatureSubscribe info ( #11704 ) ( #11705 )
...
(cherry picked from commit 35828e8fe7
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-19 02:43:44 +00:00
mergify[bot]
63855d5c2a
Get index ( #11694 ) ( #11696 )
...
(cherry picked from commit 55ce2ebd53
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-18 19:12:49 +00:00
Michael Vines
00251f710e
Bump version to v1.2.25
2020-08-18 08:40:00 -07:00
Justin Starry
14bc623989
Fully enable cross program support in mainnet-beta
2020-08-18 06:33:12 -07:00
Michael Vines
fb90fb3feb
Revert "rpc: rework binary encoding. BREAKING CHANGE (bp #11646 ) ( #11673 )"
...
This reverts commit d6ca879d39
.
2020-08-18 06:27:20 -07:00
mergify[bot]
d6ca879d39
rpc: rework binary encoding. BREAKING CHANGE (bp #11646 ) ( #11673 )
...
* Add base64 (binary64) encoding for getConfirmedTransaction/getConfirmedBlock
(cherry picked from commit b5f3ced860
)
# Conflicts:
# transaction-status/Cargo.toml
* decode-transaction now supports binary64
(cherry picked from commit 2ebc68a9e2
)
# Conflicts:
# cli/src/cli.rs
* Rework UiAccountData encode/decode such that it works from Rust
(cherry picked from commit 757e147b3b
)
# Conflicts:
# cli/src/cli.rs
* Rename Binary64 to Base64. Establish Base58 encoding
(cherry picked from commit adc984a225
)
* Remove "binary" encoding. Document "encoding" as required
(cherry picked from commit e5281157fa
)
* resolve conflicts
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-08-18 04:18:48 +00:00
mergify[bot]
2dcde5281d
Faucet: Add per-request cap ( #11665 ) ( #11668 )
...
* Add per-request cap; also use clap-utils
* Clean up arg names and take cap inputs as SOL
(cherry picked from commit 71d5409b3b
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-18 01:24:41 +00:00
mergify[bot]
e2626dad83
Re-do rent collection check on rent-exempt account (bp #11349 ) ( #11654 )
...
* Re-do rent collection check on rent-exempt account (#11349 )
* wip: re-do rent collection check on rent-exempt account
* Let's see how the ci goes
* Restore previous code
* Well, almost all new changes are revertable
* Update doc
* Add test and gating
* Fix tests
* Fix tests, especially avoid to change abi...
* Fix more tests...
* Fix snapshot restore
* Align to _new_ with better uninitialized detection
(cherry picked from commit 23fa84b322
)
# Conflicts:
# core/src/rpc_subscriptions.rs
# core/tests/bank_forks.rs
# runtime/src/bank.rs
* Fix conflicts
* Add missing comment
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-08-17 11:14:56 +00:00
mergify[bot]
070fbeb69a
Rpc: Add until parameter for getConfirmedSignaturesForAddress2 ( #11644 ) ( #11647 )
...
* Refactor bigtable apis to accept start and end keys
* Make helper fn to deserialize cell data
* Refactor get_confirmed_signatures_for_address to use get_row_data range
* Add until param to get_confirmed_signatures_for_address
* Add until param to blockstore api
* Plumb until through client/cli
* Simplify client params
(cherry picked from commit 6c5b8f324a
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-15 18:04:08 +00:00
mergify[bot]
497ec24754
Bigtable: Use index to filter address-signatures correctly ( #11622 ) ( #11642 )
...
* Use index to filter address-signatures correctly
* Pull additional keys to account for filtered records
* Clarify variable name
(cherry picked from commit 820af533a4
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-14 21:08:52 +00:00
Trent Nelson
1bda09bf0e
Bump version to 1.2.24
2020-08-14 18:51:08 +00:00
mergify[bot]
7ca7f8604d
short_vec::decode_len() returns wrong size for aliased values (bp #11624 ) ( #11630 )
...
* Add failing test for decoding ShortU16 alias values
(cherry picked from commit 338f66f9aa
)
* Factor out ShortU16 deser vistor logic to helper
(cherry picked from commit 6222fbcc66
)
* Reimplement decode_len() with ShortU16 vistor helper
(cherry picked from commit 30dbe257cf
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-08-14 15:40:12 +00:00
mergify[bot]
e2b5f2dd9c
RPC: getConfirmedSignaturesForAddress2 only returns confirmed signatures ( #11615 ) ( #11617 )
...
* Add failing test case
* Limit to only rooted slots
(cherry picked from commit 99fb36fe45
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-13 18:31:20 +00:00
mergify[bot]
3652bd57a9
Ensure highest_confirmed_root only grows (bp #11596 ) ( #11607 )
...
* Ensure highest_confirmed_root only grows (#11596 )
* Split out commitment-cache update for unit testing
* Add failing test
* Ensure highest_confirmed_root only grows
(cherry picked from commit 4da1e9833c
)
# Conflicts:
# core/src/commitment_service.rs
* Adapt to v1.2
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-13 09:19:14 +00:00
mergify[bot]
5077d6bfb3
Return blockstore signatures-for-address despite bigtable error ( #11594 ) ( #11598 )
...
(cherry picked from commit b1e452f876
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-13 01:22:31 +00:00
mergify[bot]
f0ee3e9deb
Fix assertion failure ( #11572 ) ( #11589 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 473b5249e3
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-08-12 20:38:57 +00:00
mergify[bot]
babad39846
Fix typo: epoch => slot... ( #11573 ) ( #11579 )
...
(cherry picked from commit 51e818ad64
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-08-12 09:23:05 +00:00
Trent Nelson
c15aa4a968
Bump version to 1.2.23
2020-08-12 00:34:33 +00:00
mergify[bot]
3124a88284
Move cluster slots update to separate thread (bp #11523 ) ( #11557 )
...
* Move cluster slots update to separate thread (#11523 )
* Add cluster_slots_service
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 7ef50a9352
)
# Conflicts:
# core/src/repair_service.rs
# core/src/retransmit_stage.rs
* Fix conflicts
Co-authored-by: carllin <wumu727@gmail.com >
Co-authored-by: Carl <carl@solana.com >
2020-08-11 22:54:29 +00:00
mergify[bot]
e76a2065e3
Gossip log ( #11555 ) ( #11561 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 1b238dd63e
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-08-11 22:27:35 +00:00
mergify[bot]
45f8e453a9
Add getTokenLargestAccounts to docs ( #11560 ) ( #11563 )
...
(cherry picked from commit 697a0e2947
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-11 21:21:44 +00:00
mergify[bot]
20f9c12855
panic on native load failure ( #11182 ) ( #11554 )
...
(cherry picked from commit e75f0bdfd3
)
Co-authored-by: Jack May <jack@solana.com >
2020-08-11 19:56:23 +00:00
mergify[bot]
4218414c87
filter out old gossip pull requests ( #11448 ) ( #11552 )
...
* init
* builds
* stats
* revert
* tests
* clippy
* add some jitter
* shorter jitter timer
* update
* fixup! update
* use saturating_sub
* fix filters
(cherry picked from commit 713851b68d
)
Co-authored-by: anatoly yakovenko <anatoly@solana.com >
2020-08-11 19:50:49 +00:00
mergify[bot]
60c91d386f
Adapt RpcClient to recent token method changes (bp #11519 ) ( #11547 )
...
* Adapt RpcClient to recent token method changes (#11519 )
* Avoid skip_serializing_if since that breaks deserialization
* Adapt RpcClient to recent token method changes
(cherry picked from commit 17645ee20c
)
# Conflicts:
# client/src/rpc_client.rs
* Fix conflicts
Co-authored-by: Michael Vines <mvines@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-11 18:00:35 +00:00
mergify[bot]
e477501687
Fix bad rent in Bank::deposit as if since epoch 0 (bp #10468 ) ( #11538 )
...
* Fix bad rent in Bank::deposit as if since epoch 0 (#10468 )
* Fix bad rent in Bank::deposit as if since epoch 0
* Remove redundant predicate
* Rename
* Start to add tests with some cleanup
* Forgot to add refactor code...
* Enchance test
* Really fix rent timing in deposit with robust test
* Simplify new behavior by disabling rent altogether
(cherry picked from commit 6c242f3fec
)
# Conflicts:
# runtime/src/accounts.rs
# runtime/src/rent_collector.rs
* Fix conflict
* Fix clippy
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-08-11 16:55:19 +00:00
mergify[bot]
20463e141e
Fix simulateTransaction JSON-RPC docs ( #11533 ) ( #11534 )
...
(cherry picked from commit f12fc66a69
)
Co-authored-by: Justin Starry <justin@solana.com >
2020-08-11 10:24:44 +00:00
mergify[bot]
e699462ed3
Fix solana CLI deploy (bp #11520 ) ( #11529 )
...
* Fix solana CLI deploy (#11520 )
* Refresh blockhash for program writes and finalize transactions
* Refactor to use current api, eliminating an rpc call
* Review comment
(cherry picked from commit c0d6761f63
)
# Conflicts:
# cli/src/cli.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-11 10:20:15 +00:00
mergify[bot]
8b345f3258
Add config param to specify offset/length for single and program account info (bp #11515 ) ( #11517 )
...
* Add config param to specify offset/length for single and program account info (#11515 )
* Add config param to specify dataSlice for account info and program accounts
* Use match instead of if
(cherry picked from commit 88ca04dbdb
)
# Conflicts:
# core/src/rpc.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-11 00:21:47 +00:00
mergify[bot]
56436a6271
Fix parsing of spl-token Mint ( #11512 ) ( #11513 )
...
* Add failing test
* Fix jsonParsed mint
(cherry picked from commit da210ddd51
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-10 22:08:19 +00:00
mergify[bot]
805ea6f469
Return account data size with parsed accounts ( #11506 ) ( #11510 )
...
(cherry picked from commit 1925b0bd0b
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-10 20:31:58 +00:00
mergify[bot]
1db1d173fc
Blockstore address signatures: handle slots that cross primary indexes, and refactor get_confirmed_signatures_for_address2 ( #11497 ) ( #11507 )
...
* Freeze address-signature index in the middle of slot to show failure case
* Secondary filter on signature
* Use AddressSignatures iterator instead of manually decrementing slots
* Remove unused method
* Add metrics
* Add transaction-status-index doccumentation
(cherry picked from commit de5fb3ba0e
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-10 17:50:05 +00:00
sakridge
11476038cd
Add db recovery methods ( #10838 ) ( #11496 )
2020-08-10 08:20:12 -07:00
mergify[bot]
a669ef3abb
account subcommand now requests binary64 ( #11494 )
...
(cherry picked from commit a4f5f3e978
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-08-09 22:35:19 +00:00
Michael Vines
dbbdfa1dbb
Bump version to v1.2.22
2020-08-09 18:02:02 +00:00
Justin Starry
768c6b4bef
Fallback to base64 account encoding if json parse fails ( #11483 )
...
* Fallback to base64 account encoding if json parse fails
* Remove default binary conversion
(cherry picked from commit ebc45bd73f
)
2020-08-09 09:15:21 -07:00
mergify[bot]
8bcc04c275
Decode native-program and sysvar accounts (bp #11463 ) ( #11484 )
...
* Decode native-program and sysvar accounts (#11463 )
* Pass pubkey in to account-decoder for sysvars
* Decode sysvar accounts
* Decode config accounts; move validator-info lower
* Decode stake accounts
* Review comments
* Stringify any account lamports and epochs that can be set to u64::MAX
(cherry picked from commit a9f76862fb
)
# Conflicts:
# Cargo.lock
# account-decoder/Cargo.toml
# core/src/rpc.rs
* Fix conflicts
* Ignore clippy lint affecting rust <v1.44.0
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-09 09:45:31 +00:00
mergify[bot]
2fd822887f
Add Binary64 option for account data ( #11474 ) ( #11480 )
...
* Add Binary64 option for account data
* Decode into binary64
* Reword docs
Co-authored-by: sakridge <sakridge@gmail.com >
2020-08-09 07:14:54 +00:00
mergify[bot]
e2c8aa0847
Return delegated amount as UiTokenAmount ( #11475 ) ( #11476 )
...
* Return delegated amount as UiTokenAmount
* Omit delegate and delegatedAmount when none
(cherry picked from commit 88d8d3d02a
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-09 00:28:24 +00:00
mergify[bot]
9b049402c9
Token Accounts: return ui_amount, decimals with decoded account (bp #11407 ) ( #11452 )
...
* Token Accounts: return ui_amount, decimals with decoded account (#11407 )
* Return ui_amount, decimals from token client methods
* Return ui_amount, decimals in RPC jsonParsed token accounts
* Fixup docs
* Return ui_amount, decimals in pubsub jsonParsed token accounts
* Remove unnecessary duplicate struct
* StringAmount rename
(cherry picked from commit b7c2681903
)
# Conflicts:
# client/src/rpc_client.rs
# core/src/rpc.rs
# core/src/rpc_subscriptions.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-07 19:28:25 +00:00
mergify[bot]
d0e1779893
Accounts hash calculation metrics ( #11433 ) ( #11438 )
...
(cherry picked from commit 770d3d383c
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-08-07 06:04:50 +00:00
mergify[bot]
929ffc5a4e
Fix blockstore empty panic (bp #11423 ) ( #11429 )
...
* Fix blockstore empty panic (#11423 )
* Add panicking test
* Add failing test: fresh transaction-status column shouldn't point at valid root 0
* Prevent transaction status match outside of primary-index bounds
* Initialize transaction-status and address-signature primer entries with Slot::MAX
* Revert "Add failing test: fresh transaction-status column shouldn't point at valid root 0"
This reverts commit cbad2a9fae
.
* Revert "Initialize transaction-status and address-signature primer entries with Slot::MAX"
This reverts commit ffaeac0669
.
(cherry picked from commit 1061b50665
)
# Conflicts:
# ledger/src/blockstore.rs
* Fix conflict
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-07 01:21:24 +00:00
mergify[bot]
1f63fb06f1
Add address-based lower bound to get_confirmed_signatures_for_address2 loop ( #11426 ) ( #11431 )
...
(cherry picked from commit 5530ee4c95
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-06 23:56:39 +00:00
Trent Nelson
b49aa125c9
Bump version to 1.2.21
2020-08-06 12:20:56 -07:00
mergify[bot]
55836d133e
Realloc not supported ( #11417 )
...
(cherry picked from commit bc4c5c5a97
)
Co-authored-by: Jack May <jack@solana.com >
2020-08-06 15:00:51 +00:00
Michael Vines
277e402d55
Update lib.rs
...
(cherry picked from commit 5a63c9d535
)
2020-08-06 07:58:01 -07:00
Michael Vines
0ab8312b23
Enable cross program support in mainnet-beta epoch 63
...
(cherry picked from commit c9b1d08218
)
2020-08-06 07:58:01 -07:00
Jack May
bc4c5c5a97
Realloc not supported
2020-08-06 07:57:23 -07:00
mergify[bot]
1a9aa78129
Force program address off the curve (bp #11323 ) ( #11397 )
...
* Force program address off the curve (#11323 )
(cherry picked from commit 03263c850a
)
* nudge
* trailing whitespace
Co-authored-by: Jack May <jack@solana.com >
Co-authored-by: Trent Nelson <trent@solana.com >
2020-08-06 09:46:35 +00:00
mergify[bot]
798a6db915
RPC: Plug getConfirmedSignaturesForAddress2 into bigtable storage (bp #11395 ) ( #11405 )
...
* Plug getConfirmedSignaturesForAddress2 into bigtable storage
(cherry picked from commit 4222932e08
)
# Conflicts:
# ledger-tool/src/bigtable.rs
# storage-bigtable/src/lib.rs
* Upgrade help description
(cherry picked from commit 9abb7db5f8
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-08-06 07:49:30 +00:00
Michael Vines
0a4a3fd37e
Cargo.lock
2020-08-05 23:15:28 -07:00
Michael Vines
66242eab41
Long-term ledger storage with BigTable (bp #11222 )
2020-08-05 23:15:28 -07:00
Trent Nelson
7f0d4f0656
Bump version to 1.2.20
2020-08-05 22:06:02 -06:00
mergify[bot]
acba8d6026
Mark token-specific rpcs as unstable ( #11401 )
...
(cherry picked from commit 7430896c79
)
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-06 03:59:28 +00:00
Trent Nelson
1ff9555099
Bump version to 1.2.19
...
This one has some bonus deltas due to locks not being bumped for v1.2.18 nor
the ed25591-dalek update.
2020-08-06 00:32:08 +00:00
mergify[bot]
72a13e2a72
Add getConfirmedSignaturesForAddress2 RPC method (bp #11259 ) ( #11393 )
...
* Add getConfirmedSignaturesForAddress2 RPC method
(cherry picked from commit 1b2276520b
)
# Conflicts:
# core/src/rpc.rs
* Reimplement transaction-history command with getConfirmedSignaturesForAddress2
(cherry picked from commit 087fd32ce3
)
* Rework get_confirmed_signatures_for_address2
(cherry picked from commit a11f137810
)
* Rename startAfter to before
(cherry picked from commit 02c0981ecf
)
* rebase
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-08-05 23:14:53 +00:00
Tyera Eulberg
74cdfc2213
Fall back to root if highest_confirmed_slot bank does not exist ( #11390 )
2020-08-05 22:08:20 +00:00
mergify[bot]
7b8e5a9f47
Sanitize preflight (bp #11373 ) ( #11376 )
...
* Add failing test for unsane tx in RPC preflight
(cherry picked from commit e25846e1ad
)
* Add From for SanitizeError > TransactionError
(cherry picked from commit 3f73affb2e
)
* Sanitize transactions during RPC preflight test
(cherry picked from commit 29b3265dc7
)
* Harden RPC preflight test inputs
(cherry picked from commit 14339dec0a
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-08-05 17:03:09 +00:00
mergify[bot]
80525ac862
Return token amounts as floats (bp #11370 ) ( #11378 )
...
* Return token amounts as floats (#11370 )
* Return token amounts as floats
* Floating-point equality
* Return float and raw token amounts
* Fix decimals and token rpcs for native-mint tokens
* Fixup docs and review comments
(cherry picked from commit 86e3f96f16
)
# Conflicts:
# core/src/rpc.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-05 08:31:22 +00:00
mergify[bot]
c14f98c6fc
Rework parsed account format ( #11372 ) ( #11380 )
...
* Rework parsed account format
* Serialize as type
(cherry picked from commit 308186da79
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-05 08:21:08 +00:00
mergify[bot]
c6edfc3944
Update instruction encoding format ( #11363 ) ( #11379 )
...
* Rework parsed instruction format
* Rework parsed message accounts
* Review comments
(cherry picked from commit 9d4f9be1fe
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-05 08:21:02 +00:00
mergify[bot]
b95c493d66
get_token_accounts_by_owner now returns UiTokenAccounts ( #11367 )
...
(cherry picked from commit b5e03d6df2
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-08-05 00:06:21 +00:00
mergify[bot]
5871462241
Fix token rpc-client methods (bp #11361 ) ( #11362 )
...
* Fix token rpc-client methods (#11361 )
* Convert None to error in parse_keyed_accounts
* Allow encoding configuration in getTokenAccounts methods
(cherry picked from commit d0144ce382
)
# Conflicts:
# core/src/rpc.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-04 18:40:39 +00:00
mergify[bot]
53bb826375
Make accounts explicit in unrecognized jsonParsed instructions ( #11351 ) ( #11352 )
...
(cherry picked from commit 3f6f1adb5b
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-08-03 21:50:57 +00:00
mergify[bot]
c769bcc418
Add getTokenLargestAccounts endpoint (bp #11322 ) ( #11338 )
...
* Add getTokenLargestAccounts endpoint (#11322 )
(cherry picked from commit d1b2e6cdf2
)
* Rebase on v1.2
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-08-02 17:58:55 +00:00
Michael Vines
f06a4c7861
Update spl-token and spl-memo
2020-08-02 07:53:46 -07:00
Michael Vines
0cae099d12
Bump version to v1.2.18
2020-08-01 21:15:25 -07:00
Michael Vines
4bc3653906
Remove move more
2020-08-01 17:51:59 -07:00
Greg Fitzgerald
3e7050983a
Remove move_loader and librapay ( #11184 )
...
* Remove move_loader and librapay
* Remove Embedding Move from implemented proposals
* Remove Move variant from CI
* Remove move_loader ID
2020-08-01 17:51:59 -07:00
Greg Fitzgerald
9f1bb75445
Upgrade ed25519-dalek ( #11183 )
2020-08-01 17:51:59 -07:00
Trent Nelson
139bb32dba
Bump version to 1.2.17
2020-08-01 07:14:47 +00:00
mergify[bot]
158f6f3725
Test off curve pubkey (bp #11299 ) ( #11317 )
...
* Allow inspection of signature verification failures
(cherry picked from commit 251f974b50
)
* Test that off-curve pubkeys fail signature verify
(cherry picked from commit c421d7f1b8
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-07-31 23:39:56 +00:00
Greg Fitzgerald
e33f9ea6b5
Withdraw authority no longer implies a custodian ( #11302 )
...
* Withdraw authority no longer implies a custodian
Before this change, if the withdraw authority and custodian had
the same public key, then a withdraw authority signature would
imply a custodian signature and lockup would be not be enforced.
After this change, the client's withdraw instruction must
explictly reference a custodian account in its optional sixth
account argument.
Likewise, the fee-payer no longer implies either a withdraw
authority or custodian.
* Fix test
The test was configuring the stake account with the fee-payer as
the withdraw authority, but then passing in a different key to
the withdraw instruction's withdraw authority parameter. It only
worked because the second transaction was signed by the fee-payer.
2020-07-31 17:18:23 -06:00
Greg Fitzgerald
473037db86
Remove WithSigner ( #10325 )
2020-07-31 17:18:23 -06:00
mergify[bot]
b0e14ea83c
Add token rpc endpoints to rpc-client (bp #11315 ) ( #11320 )
...
* Add token rpc endpoints to rpc-client (#11315 )
(cherry picked from commit 9bcfc51df1
)
# Conflicts:
# client/src/rpc_client.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-07-31 23:10:29 +00:00
mergify[bot]
782a549613
Enable new fork choice on mainnet, 400_000 slots into epoch 61 ( #11312 ) ( #11319 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit d7e961dac4
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-31 22:13:23 +00:00
mergify[bot]
c805f7dc4e
Decode token instructions (bp #11281 ) ( #11313 )
...
* Decode token instructions (#11281 )
* Token->SplToken
* Add spl_token instruction parsing
* Rebase on master
* Gracefully fail key len mismatches
(cherry picked from commit 0f551d4f75
)
# Conflicts:
# Cargo.lock
# transaction-status/Cargo.toml
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-07-31 21:11:58 +00:00
mergify[bot]
782829152e
Update perf libs to 0.19.1 ( #11301 ) ( #11310 )
...
* fix for cuda sigverify check for small order pubkey
(cherry picked from commit 1733f6c9e9
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-07-31 17:27:13 +00:00
mergify[bot]
da6f09afb8
Build programs with --no-default-features --features program
to match solana-sdk ( #11308 )
...
(cherry picked from commit 52575349dc
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-31 17:14:05 +00:00
mergify[bot]
004b1b9c3f
Add Vote Account Management Doc ( #11278 ) ( #11300 )
...
* Add vote account management doc
* Add links to new doc
* Whitespace
* Fixup language
* Cleaner title
* Apply review feedback
* Apply further feedback
* Fix usage page header
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit a5b6fd3d9b
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-31 02:59:07 +00:00
Michael Vines
2f8d0f88d6
Avoid spl-sdk dependency, which inhibits crate publishing
2020-07-31 00:05:13 +00:00
Vladimir Komendantskiy
177d241160
use replace value
2020-07-30 12:22:21 -07:00
Trent Nelson
5323622842
Bump version to 1.2.16
2020-07-30 10:55:09 -06:00
mergify[bot]
c852923347
Reject unsigned transactions sent via RPC (bp #11282 ) ( #11287 )
...
* Add failing test for TX sent via RPC with no signatures
(cherry picked from commit b962b2ce2d
)
* Dereplicode send_transaction and request_airdrop RPC handlers
(cherry picked from commit a7079e4dde
)
* Add new RPC error for TXs with no signatures
(cherry picked from commit 9778fedd7a
)
* Reject TXs sent via RPC with no signatures
(cherry picked from commit a888f2f516
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-07-30 08:17:43 +00:00
mergify[bot]
5dc4410d58
Disable cross-program invocations for OperatingMode::Stable (bp #11272 ) ( #11280 )
...
* Disable cross-program invocations for OperatingMode::Stable (#11272 )
(cherry picked from commit 2dbed80e48
)
# Conflicts:
# programs/bpf/benches/bpf_loader.rs
# programs/bpf_loader/src/lib.rs
# runtime/src/message_processor.rs
# sdk/src/entrypoint_native.rs
* fix conflicts
Co-authored-by: Jack May <jack@solana.com >
2020-07-30 05:50:47 +00:00
mergify[bot]
da4642d634
Fix wallet links ( #11284 ) ( #11285 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit e8c0ec53e6
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-30 05:19:33 +00:00
mergify[bot]
a264be1791
Download and install SPL programs in run.sh/multinode-demo/docker (bp #11271 ) ( #11275 )
...
* Add --bpf-program argument
(cherry picked from commit 8eb6cbf784
)
* Fetch and install SPL programs by default
(cherry picked from commit 3a1ca4efff
)
* .sh
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-29 22:42:04 +00:00
mergify[bot]
9aff121949
Add top level link to Clusters page ( #11276 ) ( #11277 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit cd043b5d70
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-29 21:40:55 +00:00
mergify[bot]
a7f4d1487a
Add SPL Token-specific rpc endpoints (bp #11231 ) ( #11261 )
...
* Add SPL Token-specific rpc endpoints (#11231 )
* Simplify account-decoder program ids + spl_token helper
* Spl program namespace version
* Add getTokenAccountBalance endpoint
* Remove token program id from getTokenAccountBalance request
* Add getTokenSupply endpoint
* Remove token program id from getTokenSupply request
* Add getTokenAccountsByOwner/Delegate endpoints
* Remove token program id from getTokenAccountsByOwner/Delegate requests
* Named parameter
(cherry picked from commit b45ac5d4db
)
# Conflicts:
# Cargo.lock
# account-decoder/Cargo.toml
# core/Cargo.toml
# core/src/rpc.rs
# transaction-status/Cargo.toml
* Fix backport
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-07-29 17:08:21 +00:00
Trent Nelson
11e43e1654
Bump version to 1.2.15
2020-07-29 06:59:27 +00:00
Jack May
82be47bc18
Revert "Land program addresses on the curve ( #11174 ) ( #11226 )"
...
This reverts commit 43e7107f65
.
2020-07-28 20:48:57 -06:00
Trent Nelson
6498e4fbf6
Rerere-enable RecentBlockhashes fix on testnet (epoch 76)
2020-07-29 02:32:07 +00:00
Trent Nelson
9978971bd9
Fill out missing RPC request received debug logging
2020-07-29 02:04:34 +00:00
mergify[bot]
e28ac2c377
Fix race condition between shrinking and cleaning (bp #11235 ) ( #11252 )
...
* Fix race condition between shrinking and cleaning (#11235 )
* Fix race condition between shrinking and cleaning
* Minor formatting
* fix ci
* Update comments
* More update comment
* Adjust fn naming
(cherry picked from commit 3e4f49f9c9
)
# Conflicts:
# runtime/src/accounts_db.rs
* Fix conflict
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-07-28 22:33:21 +00:00
Dan Albert
ef296aa7db
Update non_circulating_supply.rs
2020-07-27 16:39:13 -06:00
mergify[bot]
43e7107f65
Land program addresses on the curve ( #11174 ) ( #11226 )
...
(cherry picked from commit f317c362a8
)
Co-authored-by: Jack May <jack@solana.com >
2020-07-27 21:21:16 +00:00
mergify[bot]
752fa29390
Designate mainnet-beta epoch 61 as an upgrade epoch ( #11229 )
...
(cherry picked from commit ed01591be6
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-27 20:08:45 +00:00
mergify[bot]
7bb7b42356
Use &[u8] for program address seeds rather then &str ( #10744 ) ( #11227 )
...
(cherry picked from commit 73586c1aad
)
Co-authored-by: Jack May <jack@solana.com >
2020-07-27 19:32:21 +00:00
mergify[bot]
2a7fc744f9
Add Docusaurus search ( #11135 ) ( #11224 )
...
* Add Docusaurus search
* Add Algolia configuration information
* Trailing whitespace :(
Co-authored-by: Ryan Shea <rmshea@users.noreply.github.com >
(cherry picked from commit cbf0b779d7
)
Co-authored-by: R. M. Shea <8948187+rmshea@users.noreply.github.com >
2020-07-27 16:39:56 +00:00
mergify[bot]
90e3da0389
Remove accidental MB activation for RecentBlockhashes consistency fix ( #11216 )
...
(cherry picked from commit 7931579610
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-07-26 18:59:07 +00:00
mergify[bot]
1a62bcee42
Windows binaries are now built with the MSVC instead of the GNU toolchain (bp #11208 ) ( #11211 )
...
* Windows binaries are now built with the MSVC instead of the GNU toolchain.
Update `solana-install-init` target info to match
(cherry picked from commit 01ff6846f7
)
# Conflicts:
# ci/publish-tarball.sh
* Update publish-tarball.sh
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-25 18:29:35 +00:00
Trent Nelson
b83a4cae90
Bump version to 1.2.14
2020-07-25 04:00:17 +00:00
mergify[bot]
05ef21cd3b
Add token account decoding (bp #11136 ) ( #11202 )
...
* Add token account decoding (#11136 )
* Add token decoding
* Bump versions
(cherry picked from commit 32fea0496e
)
# Conflicts:
# Cargo.lock
# account-decoder/Cargo.toml
# transaction-status/Cargo.toml
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-07-25 01:37:07 +00:00
mergify[bot]
dfa27b04d7
Add package-lock.json to docs ( #11200 ) ( #11201 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit eac423f92c
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-24 20:31:45 +00:00
Dan Albert
880b04906e
Restore stake delegation page to sidebar
2020-07-24 13:42:36 -06:00
Trent Nelson
1fe0b1e516
Push back activation epochs redux
...
Effects:
- Re-enabling inflation
- Nonce FeeCalculator overwrite / RecentBlockhashes sysvar inconsistency fix
2020-07-24 18:09:40 +00:00
mergify[bot]
f9fd4bd24c
Test cleanup ( #11192 ) ( #11193 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit c0dc21620b
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-24 12:09:39 +00:00
mergify[bot]
c55a11d160
Add encoding and filters parameters to rpc Subscriptions (bp #11065 ) ( #11187 )
...
* Add encoding and filters parameters to rpc Subscriptions (#11065 )
* Plumb account configs and enable encoding
* Enable filters for pubsub program accounts
* Update docs
(cherry picked from commit c90de8978d
)
* Fix test
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-07-23 21:53:05 +00:00
Tyera Eulberg
92118de0e1
Skip entrypoint in programs ( #11175 )
2020-07-22 20:59:36 -06:00
Tyera Eulberg
0d9802a2cd
Use OrderedIterator in collect_balances ( #11173 )
2020-07-22 16:59:54 -06:00
Trent Nelson
f6beede01b
Push back activation epochs
...
Effects:
- Re-enabling inflation
- Nonce FeeCalculator overwrite / RecentBlockhashes sysvar inconsistency fix
2020-07-22 16:17:02 -06:00
Trent Nelson
ff48ea20de
Bump version to 1.2.13
2020-07-22 06:08:41 +00:00
Trent Nelson
dd9cb18d65
Enable RecentBlockhashes one tick delay fix on testnet
...
Slot 25_580_256 / Epoch 72
2020-07-22 05:51:47 +00:00
mergify[bot]
71932aed0a
Re-enable inflation again for testnet ( #11156 )
...
(cherry picked from commit 3fd16cea34
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-07-22 05:14:04 +00:00
mergify[bot]
24dc6680e1
getEpochInfo RPC endpoint now includes the current block height ( #11155 )
...
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-22 01:53:53 +00:00
mergify[bot]
61d9d40e48
Program feature-flag entrypoint ( #11144 ) ( #11152 )
...
(cherry picked from commit 231e2387db
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-07-21 22:02:13 +00:00
mergify[bot]
e9b40db319
Use OrderedIterator in TransactionStatusService ( #11149 ) ( #11151 )
...
* Split out get-first-err for unit testing
* Add failing test
* Add missing ordering
(cherry picked from commit 6c38369042
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-07-21 21:36:02 +00:00
mergify[bot]
316356861d
Freeze warped bank to show freeze logs ( #11141 ) ( #11145 )
...
(cherry picked from commit 6935e88148
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-07-21 08:14:38 +00:00
mergify[bot]
e07c00710a
fix rewards points (bp #10914 ) ( #11142 )
...
* fix rewards points (#10914 )
* fix rewards points
* fixups
* * verify that we don't spend more in rewards than we've allocated for rewards
* purge f64s from calculations that could be done with integers
* test typical values
* simplify iteration over delegations some
* fixups
* Use try_from
* Add a comment for commission_split()
* Add assertion to detect inconsistent reward dist.
* Fix vote_balance_and_staked
* Don't overwrite accounts with stale copies
* Fix CI...
* Add tests for vote_balance_and_staked
* Add test for the determinism of update_rewards
* Revert "Don't overwrite accounts with stale copies"
This reverts commit 9886d085a6
.
* Make stake_delegation_accounts to return hashmap
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
(cherry picked from commit 7cc2a6801b
)
# Conflicts:
# runtime/src/serde_snapshot/tests.rs
* Fix conflict
Co-authored-by: Rob Walker <rwalker@rwalker.com >
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-07-21 06:35:20 +00:00
mergify[bot]
bc47c80610
Insubstantial grammar fix ( #11133 ) ( #11134 )
...
(cherry picked from commit 0cb422fbbb
)
Co-authored-by: Wei Tang <accounts@that.world >
2020-07-20 14:46:51 +00:00
mergify[bot]
14baa511f0
Add --warp-epoch and --enable-inflation to ledger-tool cap. (bp #11107 ) ( #11132 )
...
* Add --warp-epoch and --force-inflation to ledger-tool cap. (#11107 )
* Add --warp-epoch and --force-inflation to ledger-tool cap.
* Add more arguments
* Address review comments
* Fix message
* Fix various typos...
(cherry picked from commit 3db246f596
)
# Conflicts:
# ledger-tool/src/main.rs
* Fix conflicts..
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-07-20 12:00:56 +00:00
carllin
e773faeb24
Add replay votes to gossip vote tracking ( #11124 )
...
* Plumb replay vote channel
* Don't send redundant slots to repair_service
* Update test
* Keep gossip only for debugging gossip in the future
* Add comments
* Switch to using select()
* Fix replay -> gossip vote not counting toward gossip only stake
* tests
Co-authored-by: Carl <carl@solana.com >
2020-07-19 22:25:16 -07:00
Dan Albert
42847516a2
Update build.sh
2020-07-18 08:32:12 -06:00
mergify[bot]
47e9a1ae4f
Remove tictactoe, add Break and Hello World to docs ( #11117 ) ( #11118 )
...
* Remove tictactoe, add Break to apps docs
* Add hello world
* fix whitespace
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit 1ad0d210bc
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-18 00:21:48 +00:00
mergify[bot]
549a154394
Fix 404 broken links ( #11113 ) ( #11114 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit d0d4d9b3d1
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-17 18:01:50 +00:00
mergify[bot]
dca00d1bde
Add Bank support for "upgrade epochs" where all non-vote transactions will be rejected (bp #11082 ) ( #11110 )
...
* Add Bank support for "upgrade epochs" where all non-vote transactions will be rejected
(cherry picked from commit e5d8c4383f
)
# Conflicts:
# runtime/src/bank.rs
* Fix merge conflict
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-17 17:29:34 +00:00
mergify[bot]
45ce1b4f96
Always pass affected file check on tagged release ( #11089 ) ( #11091 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit 6174cdb579
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-16 04:29:15 +00:00
Michael Vines
a9232c0633
Update CRATES_IO_TOKEN
2020-07-15 17:53:05 -07:00
carllin
3da254c745
Bump version to 1.2.12 ( #11088 )
...
Co-authored-by: Me <carl_solana_com@carl-dev.c.principal-lane-200702.internal>
2020-07-15 23:55:05 +00:00
mergify[bot]
9ba3ee9683
Change transparent .svg to opaque .png ( #11084 ) ( #11085 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit fe71f9ad1a
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-15 21:47:59 +00:00
Tyera Eulberg
b0addba2a9
Gate nonce-overwrite change ( #11079 )
2020-07-15 21:14:28 +00:00
mergify[bot]
bb59525ff8
Refactor file and URL paths in docusaurus ( #11080 ) ( #11083 )
2020-07-15 14:35:12 -06:00
mergify[bot]
acd25124d4
Make accounts file clean faster ( #11071 ) ( #11077 )
...
(cherry picked from commit 7fe870ba48
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-07-15 18:00:41 +00:00
mergify[bot]
d718ab2491
accounts_clean: Convert stack dependency calculation with iterative ( #11067 ) ( #11076 )
...
* accounts_clean: Convert stack dependency calculation with iterative
* optimize clean with by creating a reverse-lookup hashset of the affected
keys
* Add dependency bench
reduce bench
* Huge clean
(cherry picked from commit 8bf3a0aa05
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-07-15 15:13:33 +00:00
mergify[bot]
1860aacd1f
Temporalily disable inflation to fix it later ( #11072 ) ( #11075 )
...
* Revert get_inflation()
* Temporalily disable inflation to fix it later
* Use match and proper type aliases
(cherry picked from commit d81c7250b0
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-07-15 11:20:02 +00:00
mergify[bot]
d4bbb7f516
Expose TransactionStatusService to the other blockstore_processor path (bp #11070 ) ( #11074 )
...
* Expose tss to the other blockstore_processor path (#11070 )
(cherry picked from commit 9a80e31bae
)
# Conflicts:
# core/src/validator.rs
# ledger/src/blockstore_processor.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-07-15 05:50:45 +00:00
mergify[bot]
d1c0f4b4f1
Fix hygiene issues in declare_program!
and declare_loader!
(bp #10905 ) ( #11073 )
...
* Fix hygiene issues in `declare_program!` and `declare_loader!`
The `declare_program!` and `declare_loader!` macros both expand to
new macro definitions (based on the `$name` argument). These 'inner'
macros make use of the special `$crate` metavariable to access items in
the crate where the 'inner' macros is defined.
However, this only works due to a bug in rustc. When a macro is
expanded, all `$crate` tokens in its output are 'marked' as being
resolved in the defining crate of that macro. An inner macro (including
the body of its arms) is 'just' another set of tokens that appears in
the body of the outer macro, so any `$crate` identifiers used there are
resolved relative to the 'outer' macro.
For example, consider the following code:
```rust
macro_rules! outer {
() => {
macro_rules! inner {
() => {
$crate::Foo
}
}
}
}
```
The path `$crate::Foo` will be resolved relative to the crate that defines `outer`,
**not** the crate which defines `inner`.
However, rustc currently loses this extra resolution information
(referred to as 'hygiene' information) when a crate is serialized.
In the above example, this means that the macro `inner` (which gets
defined in whatever crate invokes `outer!`) will behave differently
depending on which crate it is invoked from:
When `inner` is invoked from the same crate in which it is defined,
the hygiene information will still be available,
which will cause `$crate::Foo` to be resolved in the crate which defines 'outer'.
When `inner` is invoked from a different crate, it will be loaded from
the metadata of the crate which defines 'inner'. Since the hygiene
information is currently lost, rust will 'forget' that `$crate::Foo` is
supposed to be resolved in the context of 'outer'. Instead, it will be
resolved relative to the crate which defines 'inner', which can cause
incorrect code to compile.
This bug will soon be fixed in rust (see https://github.com/rust-lang/rust/pull/72121 ),
which will break `declare_program!` and `declare_loader!`. Fortunately,
it's possible to obtain the desired behavior (`$crate` resolving in the
context of the 'inner' macro) by use of a procedural macro.
This commit adds a `respan!` proc-macro to the `sdk/macro` crate.
Using the newly-stabilized (on Nightly) `Span::resolved_at` method,
the `$crate` identifier can be made to be resolved in the context of the
proper crate.
Since `Span::resolved_at` is only stable on the latest nightly,
referencing it on an earlier version of Rust will cause a compilation error.
This requires the `rustversion` crate to be used, which allows conditionally
compiling code epending on the Rust compiler version in use. Since this method is already
stabilized in the latest nightly, there will never be a situation where
the hygiene bug is fixed (e.g. https://github.com/rust-lang/rust/pull/72121 )
is merged but we are unable to call `Span::resolved_at`.
(cherry picked from commit 05445c718e
)
# Conflicts:
# Cargo.lock
# sdk/Cargo.toml
* Replace FIXME with an issue link
(cherry picked from commit b0cb2b0106
)
* Update lock files
(cherry picked from commit 42f88484f4
)
# Conflicts:
# programs/bpf/Cargo.lock
# programs/librapay/Cargo.lock
# programs/move_loader/Cargo.lock
* Split comment over multiple lines
Due to https://github.com/rust-lang/rustfmt/issues/4325 , leaving this as
one line causes rustfmt to add extra indentation to the surrounding
code.
(cherry picked from commit fed69e96a9
)
* Fix clippy lints
(cherry picked from commit e7387f60a7
)
* Apply #![feature(proc_macro_hygiene)] when needed
This allows the rust-bpf-builder toolchain to build the sdk
(cherry picked from commit 95490ff56e
)
# Conflicts:
# sdk/build.rs
# sdk/src/lib.rs
* Update Cargo.toml
* Update lib.rs
* Add rustc_version
* lock file updates
Co-authored-by: Aaron Hill <aa1ronham@gmail.com >
Co-authored-by: Jack May <jack@solana.com >
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-15 02:40:36 +00:00
carllin
b72b837ba2
Revert dashboard changes ( #11069 )
...
Co-authored-by: Carl <carl@solana.com >
2020-07-15 00:42:39 +00:00
mergify[bot]
fde85c96c0
Add dropped vote metrics ( #11009 ) ( #11030 )
...
(cherry picked from commit 1880621740
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-07-14 15:21:49 -07:00
mergify[bot]
121418dad2
CLI: Fix vote blind indexing (bp #11045 ) ( #11050 )
...
* CLI: Fix explicitly plumb withdraw_authority through vote-update-commission
(cherry picked from commit 3392ecc310
)
* CLI: Fix explicitly plumb withdraw_authority through vote-update-validator
(cherry picked from commit 2284699889
)
* CLI: Fix explicitly plumb vote_account through create-vote-account
(cherry picked from commit 14ac233d01
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-07-14 15:35:46 +00:00
Dan Albert
f44f94fe23
Remove docs step from buildkite flow ( #11035 ) ( #11044 )
2020-07-14 08:20:58 -06:00
mergify[bot]
55a4481022
Clean up docs publishing flow ( #11043 ) ( #11051 )
...
* Clean up publishing flow
* Update README
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit 303a4df6ef
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-07-14 14:09:53 +00:00
mergify[bot]
e859ad37a8
Add TreeDiff trait to reuse tree functions ( #11046 ) ( #11048 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit e9cbdf711b
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-14 09:03:53 +00:00
mergify[bot]
1a28c7fc12
Fix recent blockhashes delay (bp #11036 ) ( #11040 )
...
* Add failing test
(cherry picked from commit 942c019d50
)
* Factor locked portion of Bank::update_recent_blockhashes() out to helper
(cherry picked from commit 9cc379af6c
)
* Synchronize BlockhashQueue and RecentBlockhashes sysvar update
(cherry picked from commit 5357ff6d60
)
* Bump goldens
(cherry picked from commit 837ac77c02
)
* Fix test advancing banks from incomplete slots
(cherry picked from commit 51283c931c
)
* Mode gate RecentBlockhashes/BlockhashQueue sync
(cherry picked from commit 5741002a32
)
Co-authored-by: Tyera Eulberg <tyera@solana.com >
Co-authored-by: Trent Nelson <trent@solana.com >
2020-07-14 04:12:37 +00:00
Dan Albert
c706a07764
Fix travis config ( #11033 )
...
* Fix travis config
* Remove linux build job from travis
2020-07-13 17:00:18 -06:00
Dan Albert
59568e5776
Move from gitbook to docusaurus - backport ( #10970 ) ( #11029 )
...
* Move v1.2 to docusaurus
* Fixup travis conifg
Co-authored-by: publish-docs.sh <maintainers@solana.com >
2020-07-13 14:45:28 -06:00
Dan Albert
33ca8fa72a
Fix Travis PR detection environment ( #10974 ) ( #11024 )
2020-07-13 14:25:40 -06:00
mergify[bot]
4bb66a81fb
Check for deleting key, make sure list is empty again ( #11007 ) ( #11011 )
...
Co-authored-by: sakridge <sakridge@gmail.com >
2020-07-13 09:00:48 -07:00
Michael Vines
468c14b14f
Revert "Add UiTransactionEncoding::Raw"
...
This reverts commit bcc890e705
.
2020-07-12 09:00:11 -07:00
Tyera Eulberg
03e505897a
Backport windows build fixes ( #11004 )
...
* Bump spl-memo
* spl memo linking windows (#11000 )
* Update spl-memo to fix windows linking error
* Only programs need the stubs
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
Co-authored-by: Jack May <jack@solana.com >
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-07-10 21:46:11 -06:00
mergify[bot]
5205eb382e
Switch to using weighted repair in RepairService ( #10735 ) ( #10985 )
...
Co-authored-by: Carl <carl@solana.com >
2020-07-10 16:15:36 -07:00
Michael Vines
b07b6e56fa
getConfirmedBlocks now has an upper limit on slot range
...
(cherry picked from commit aef6bf272e
)
2020-07-10 15:40:03 -07:00
Michael Vines
bcc890e705
Add UiTransactionEncoding::Raw
...
(cherry picked from commit a4a5438b6d
)
2020-07-10 14:55:27 -07:00
mergify[bot]
07d14f6f07
Add RepairWeight to track votes seen in gossip for weighted repair ( #10903 ) ( #10938 )
...
* Add RepairWeight
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 3f6042d8b3
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-10 14:13:56 -07:00
mergify[bot]
03b213e296
Add block time placeholder to getConfirmedBlock ( #10990 )
...
(cherry picked from commit 491f5ae61a
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-10 11:02:27 -07:00
mergify[bot]
1bfce24c9f
Fix skipped slot detection for eager rent collect ( #10890 ) ( #10978 )
...
(cherry picked from commit f1c1152948
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-07-10 11:59:44 +09:00
mergify[bot]
94b2565969
Fix nonce fee_calculator overwrite ( #10973 ) ( #10976 )
...
* Add failing test
* Pass fee_calculator to prepare_if_nonce_account; only overwrite in error case
(cherry picked from commit 25228ca957
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-07-09 16:57:34 -06:00
sakridge
2896fdb603
Update version to v1.2.11 ( #10966 )
2020-07-09 06:48:30 -07:00
sakridge
50970bc8f9
Update version to v1.2.10 ( #10962 )
2020-07-08 15:34:19 -07:00
mergify[bot]
10df45b173
update testnet docs ( #10954 ) ( #10955 )
...
(cherry picked from commit e50227745d
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-07-08 04:08:16 +00:00
mergify[bot]
d3b8129593
Clean accounts path on validator startup ( #10929 ) ( #10944 )
...
Co-authored-by: sakridge <sakridge@gmail.com >
2020-07-07 18:27:49 +00:00
Tyera Eulberg
f7fb5aebac
v1.2 instruction and account decoding backports ( #10939 )
...
* Revert "Rpc: add filter to getProgramAccounts (#10888 ) (#10932 )"
This reverts commit 9311a6e356
.
* Add jsonParsed option for EncodedTransactions; add memo parser (#10711 )
* Add jsonParsed option for EncodedTransactions; add memo parser
* Use kebab case for program names
* Add account-key parsing
* Add parse test
* Update transaction encoding docs (#10833 )
* Add account-decoder utilities (#10846 )
* Fix comment and make less pub
* Add account-decoder crate and use to decode vote and system (nonce) accounts
* Update docs
* Rename RpcAccount struct
* s/Rpc/Display
* Call it jsonParsed and update docs
* Revert "s/Rpc/Display"
This reverts commit 6e7149f503
.
* s/Rpc/Ui
* Add tests
* Ui more things
* Comments
* Update struct prefixes to Ui (#10874 )
* Update comments
* Use Ui prefix
* Rpc: add filter to getProgramAccounts (#10888 )
* Add RpcFilterType, and implement CompareBytes for getProgramAccounts
* Accept bytes in bs58
* Rename to memcmp
* Add Memcmp optional encoding field
* Add dataSize filter
* Update docs
* Clippy
* Simplify tests that don't need to test account contents; add multiple-filter tests
2020-07-07 09:35:35 -06:00
Tyera Eulberg
9311a6e356
Rpc: add filter to getProgramAccounts ( #10888 ) ( #10932 )
...
* Add RpcFilterType, and implement CompareBytes for getProgramAccounts
* Accept bytes in bs58
* Rename to memcmp
* Add Memcmp optional encoding field
* Add dataSize filter
* Update docs
* Clippy
* Simplify tests that don't need to test account contents; add multiple-filter tests
2020-07-06 21:45:12 +00:00
mergify[bot]
8c706892df
Rpc: Add getStakeActivation endpoint (bp #10902 ) ( #10930 )
...
* Rpc: Add getStakeActivation endpoint (#10902 )
* Add getStakeActivation endpoint
* Add docs
* Update docs/src/apps/jsonrpc-api.md
Co-authored-by: Michael Vines <mvines@gmail.com >
* Rework return type
* Update docs
* Rebase
Co-authored-by: Michael Vines <mvines@gmail.com >
(cherry picked from commit 4de0713aa3
)
* Fix build
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-07-06 21:23:27 +00:00
mergify[bot]
7f2b11756c
Fix parsing ( #10924 ) ( #10926 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 823126b372
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-06 11:05:17 +00:00
mergify[bot]
f324547600
Skip and warn for hard-forks which are less than the start slot ( #10918 ) ( #10920 )
...
* Skip and warn for hard-forks which are less than the start slot
Option is used during a restart, but then after the restart is
complete, then the option is not needed if the starting slot
is past the hard-fork since the hard-fork should already be
in the snapshot it started from.
* Update ledger/src/blockstore_processor.rs
Co-authored-by: Michael Vines <mvines@gmail.com >
Co-authored-by: Michael Vines <mvines@gmail.com >
(cherry picked from commit 658de5b347
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-07-05 22:15:26 +00:00
mergify[bot]
36e8977f1d
Repair timing ( #10913 ) ( #10917 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 28e15a63e5
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-04 03:48:29 +00:00
mergify[bot]
b88db2689e
Add breakdown of erasure blobs ( #10912 ) ( #10915 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit f014c94369
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-04 02:15:03 +00:00
sakridge
1584ec220c
Move clean accounts to background service ( #10904 )
2020-07-02 22:39:22 -07:00
mergify[bot]
fb366a7236
Add weighted traversal ( #10877 ) ( #10901 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit f17ac70bb2
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-02 23:52:03 +00:00
mergify[bot]
b903158543
getInflationRate now only supports the current epoch ( #10887 )
...
(cherry picked from commit d53228e69d
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-07-02 03:36:47 +00:00
mergify[bot]
9dad9c6333
Prevent stub inclusion when building shared objects (bp #10875 ) ( #10879 )
...
* Prevent stub inclusion when building shared objects (#10875 )
(cherry picked from commit 52526a9bc2
)
# Conflicts:
# programs/bpf/rust/128bit/src/lib.rs
# programs/bpf/rust/alloc/src/lib.rs
# programs/bpf/rust/dep_crate/src/lib.rs
# programs/bpf/rust/invoke/src/lib.rs
# programs/bpf/rust/invoked/src/lib.rs
# programs/bpf/rust/iter/src/lib.rs
# programs/bpf/rust/many_args/src/lib.rs
# programs/bpf/rust/many_args_dep/src/lib.rs
# programs/bpf/rust/noop/src/lib.rs
# programs/bpf/rust/param_passing/src/lib.rs
# programs/bpf/rust/param_passing_dep/src/lib.rs
# sdk/bpf/rust/test/src/lib.rs
* nudge
Co-authored-by: Jack May <jack@solana.com >
2020-07-01 22:47:17 +00:00
mergify[bot]
a6658b9d75
Add ability to parse logs in ledger-tool ( #10840 ) ( #10849 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 2dfa48daf9
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-01 20:30:48 +00:00
mergify[bot]
a97feedcc1
Pull program stubs into SDK (bp #10704 ) ( #10713 )
...
* Pull program stubs into SDK (#10704 )
(cherry picked from commit d77818c18b
)
# Conflicts:
# programs/bpf/Cargo.lock
# programs/bpf/rust/128bit/Cargo.toml
# programs/bpf/rust/128bit_dep/Cargo.toml
# programs/bpf/rust/alloc/Cargo.toml
# programs/bpf/rust/dep_crate/Cargo.toml
# programs/bpf/rust/dup_accounts/Cargo.toml
# programs/bpf/rust/error_handling/Cargo.toml
# programs/bpf/rust/external_spend/Cargo.toml
# programs/bpf/rust/invoke/Cargo.toml
# programs/bpf/rust/invoked/Cargo.toml
# programs/bpf/rust/iter/Cargo.toml
# programs/bpf/rust/many_args/Cargo.toml
# programs/bpf/rust/many_args_dep/Cargo.toml
# programs/bpf/rust/noop/Cargo.toml
# programs/bpf/rust/panic/Cargo.toml
# programs/bpf/rust/param_passing/Cargo.toml
# programs/bpf/rust/param_passing_dep/Cargo.toml
# programs/bpf/rust/sysval/Cargo.toml
# sdk/bpf/rust/test/Cargo.toml
* fix conflicts
Co-authored-by: Jack May <jack@solana.com >
2020-07-01 20:17:37 +00:00
mergify[bot]
8021bce41f
Instructions for validator logging ( #10845 ) ( #10878 )
...
* Instructions for disabling log throttling
* Remove syslog, add logrotate
* Update docs/src/running-validator/validator-start.md
Co-authored-by: Trent Nelson <trent.a.b.nelson@gmail.com >
Co-authored-by: Carl <carl@solana.com >
Co-authored-by: Trent Nelson <trent.a.b.nelson@gmail.com >
(cherry picked from commit 6b45481bbb
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-01 20:03:27 +00:00
mergify[bot]
d8fa19336c
Add heaviest subtree utility functions ( #10863 ) ( #10865 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 7a71580d53
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-07-01 11:21:22 +00:00
sakridge
191483cf9f
Update cargo.* version to 1.2.9 ( #10861 )
2020-06-30 23:21:10 +00:00
mergify[bot]
1eb8314d42
Update expected shred version for testnet. ( #10858 ) ( #10859 )
...
(cherry picked from commit 5adf6f6bde
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-30 21:02:58 +00:00
sakridge
88eeb817e4
More guard rails for restart with ledger procedure ( #10854 )
...
* Add expected_bank_hash required for supermajority
* Print snapshot hash in ledger-tool create-snapshot.
2020-06-30 12:55:25 -07:00
Stephen Akridge
b777126bd2
Revert removing -e in cargo-for-all-lock-files
2020-06-30 09:13:03 -07:00
Stephen Akridge
89d78dcfcf
Update cargo.* version to 1.2.8
2020-06-30 09:03:28 -07:00
mergify[bot]
1cf142c193
Remove outdated todo comment ( #10850 ) ( #10851 )
...
(cherry picked from commit cabedc0f36
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-06-30 15:07:09 +00:00
mergify[bot]
3e29325410
Fix fork detection ( #10839 ) ( #10844 )
...
* Fix fork detection
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 4b93a7c1f6
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-06-30 04:16:05 +00:00
mergify[bot]
4dc98c3dbd
Reduce logging lines ( #10835 ) ( #10841 )
...
(cherry picked from commit d9b389f510
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-30 00:28:58 +00:00
mergify[bot]
9caad645e2
Remove ledger purge batching ( #10830 ) ( #10836 )
...
(cherry picked from commit 583cec922b
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-29 23:10:45 +00:00
mergify[bot]
6cb76ac326
More replay stage timing metrics ( #10828 ) ( #10829 )
...
(cherry picked from commit 17a2128a8f
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-28 18:27:35 +00:00
mergify[bot]
0001e5c0a1
net.sh: Refactor node initialization wait ( #10819 ) ( #10824 )
...
* remote-node.sh: Factor out init wait to own script
* remote-node.sh: Allow nodes to initialize asynchronously
* testnet-automation: Plumb --async-node-init
(cherry picked from commit 7021e1c584
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-06-26 16:28:46 +00:00
carllin
ab32d13da1
Add debugging ( #10820 )
...
Co-authored-by: Carl <carl@solana.com >
2020-06-26 08:09:04 +00:00
mergify[bot]
cefe46e981
Clean up rpc module ( #10812 ) ( #10815 )
...
* Clean up rpc module
* Simplify getting bank
(cherry picked from commit 62b873b054
)
Co-authored-by: Greg Fitzgerald <greg@solana.com >
2020-06-26 01:59:06 +00:00
mergify[bot]
f4d70e78b6
Add ancestor iterator to lib.rs ( #10813 ) ( #10817 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 0fde0d7379
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-06-26 01:02:51 +00:00
mergify[bot]
d130adf582
Dont skip eager rent collect across gapped epochs ( #10206 ) ( #10808 )
...
* Dont skip eager rent collect across gapped epochs
* Adjust style and comment
* Adjust ascii chart and comment a bit
* Moar assert
* Relax the partition_count assert for completeness
* Tweak comment...
* tweak a bit
* Add gating logic
* Address reviews
* small formatting
* Clarify the code by replacing auto_generated...
* small formatting
* small formatting
* small formatting
* small formatting
* Narrow down conditional compilation scope
(cherry picked from commit 50f7ed80c8
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-06-25 15:34:04 +00:00
carllin
1e6285e64e
Fix leaf propagation in case of no votes in HeaviestForkChoice ( #10807 )
...
* Fix leaf propagation logic
Co-authored-by: Carl <carl@solana.com >
2020-06-25 04:05:26 -07:00
mergify[bot]
e3c90c3807
Add non-circulating withdraw authority ( #10798 ) ( #10804 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit b3e382ab3f
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-06-25 06:15:24 +00:00
mergify[bot]
85750307aa
Rename Client methods to match proposed BanksClient (bp #10793 ) ( #10800 )
...
* Rename Client methods to match proposed BanksClient (#10793 )
(cherry picked from commit 7ade330b23
)
# Conflicts:
# programs/bpf/tests/programs.rs
# runtime/benches/bank.rs
* Fix merge
Co-authored-by: Greg Fitzgerald <greg@solana.com >
2020-06-25 05:33:12 +00:00
mergify[bot]
0ee4a5e799
Fix race in ci/run-sanity.sh ( #10796 ) ( #10802 )
...
(cherry picked from commit 4dc9f378b8
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-06-25 04:54:54 +00:00
mergify[bot]
55cb9cf681
Use cargo tree
to bump release branch lock files ( #10790 ) ( #10792 )
...
(cherry picked from commit 48b846203e
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-06-25 03:04:10 +00:00
mergify[bot]
d3af7e0653
Fix broken image link ( #10496 ) ( #10795 )
...
automerge
(cherry picked from commit 75b8c2c4e3
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-06-25 01:41:53 +00:00
mergify[bot]
729a24d557
Fixup stake doc wording ( #10782 ) ( #10784 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit d5d5ad0071
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-06-25 01:25:22 +00:00
mergify[bot]
55b92c16da
Remove fee-payer guesswork from Message and Transaction (bp #10776 ) ( #10785 )
...
* Remove fee-payer guesswork from Message and Transaction (#10776 )
* Make Message::new_with_payer the default constructor
* Remove Transaction::new_[un]signed_instructions
These guess the fee-payer instead of stating it explicitly
(cherry picked from commit 1c498369b5
)
# Conflicts:
# cli/src/nonce.rs
# core/src/rpc.rs
# ledger/src/blockstore.rs
# programs/bpf/tests/programs.rs
* Fix merge
Co-authored-by: Greg Fitzgerald <greg@solana.com >
2020-06-25 01:10:23 +00:00
Trent Nelson
835bacce4f
Revert some stowaway changes from ccb7b1a
2020-06-24 16:04:28 -06:00
Stephen Akridge
ccb7b1a698
Bump cargo version to v1.2.7
2020-06-24 09:23:12 -07:00
mergify[bot]
85dbdeb4c3
Add staking guide to docs ( #10609 ) ( #10780 )
...
(cherry picked from commit 0b14ae5725
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-06-24 09:46:42 -06:00
mergify[bot]
397f9f11c5
Allow for hard fork at last root ( #10762 ) ( #10766 )
...
(cherry picked from commit 0e393a5684
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-24 06:10:48 +00:00
mergify[bot]
a11986ad1d
Make curl verbose when uploading assets to github ( #10757 ) ( #10761 )
...
Debugging silent asset upload failures during release
(cherry picked from commit 3aab13a167
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-06-24 01:35:13 +00:00
mergify[bot]
a4d373f0af
Fix plumtree link ( #10755 ) ( #10759 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit c52f06a54a
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-06-23 23:42:25 +00:00
mergify[bot]
52eea215ce
Rework backup and clear function ( #10751 ) ( #10754 )
...
(cherry picked from commit a1ef921b88
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-23 22:56:14 +00:00
mergify[bot]
6f48aafd3a
Add utility functions for testing ( #10749 ) ( #10752 )
...
* Add ancestor iterator
* Add blockstore generation from trees
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 77b8de193c
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-06-23 21:55:09 +00:00
Stephen Akridge
2d94c09aee
Bump Cargo.toml version to 1.2.6
2020-06-22 23:23:16 -07:00
mergify[bot]
9699b61679
Remove slots past wait-for-supermajority slot. ( #10720 ) ( #10745 )
...
(cherry picked from commit 2ba8fc5243
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-23 04:57:57 +00:00
mergify[bot]
8865bfbd59
Weight repair slots based on vote stake ( #10741 ) ( #10746 )
...
* Weight repair slots based on vote stake
* Add test
(cherry picked from commit cabd0a09c3
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-23 04:48:32 +00:00
mergify[bot]
5f80c1d37d
Remote Wallet: Stricter derivation path component parsing ( #10725 ) ( #10740 )
...
(cherry picked from commit 842cab2739
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-06-22 18:36:12 +00:00
mergify[bot]
f616f5dec6
ledger-tool: Ignore SIGUSR1 ( #10730 ) ( #10732 )
...
Prevents warehouse archive calls getting KO'd by logrotate
(cherry picked from commit d42247c652
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-06-21 19:31:38 +00:00
mergify[bot]
db1003b5f8
nit removal ( #10721 ) ( #10729 )
...
(cherry picked from commit a87f490b5e
)
Co-authored-by: Kristofer Peterson <svenski123@users.noreply.github.com >
2020-06-21 08:36:07 +00:00
mergify[bot]
f52ff777b7
Add repair breakdown by slot and index ( #10717 ) ( #10727 )
...
* Slot full logging
* Repair stats logging
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit a33fef9af2
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-06-20 02:52:22 +00:00
mergify[bot]
4314a29953
Fix typo ( #10724 ) ( #10726 )
...
(cherry picked from commit cae22efd0e
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-06-20 01:27:20 +00:00
mergify[bot]
e560fff840
Add CLI options and runtime support for selection of output snapshot version (bp #10536 ) ( #10712 )
...
* Add CLI options and runtime support for selection of output snapshot version. (#10536 )
(cherry picked from commit 6d81eede93
)
# Conflicts:
# core/src/accounts_hash_verifier.rs
# core/src/rpc_service.rs
# core/tests/bank_forks.rs
# ledger-tool/src/main.rs
# ledger/src/snapshot_package.rs
# validator/src/main.rs
* Fix conflicts
Co-authored-by: Kristofer Peterson <svenski123@users.noreply.github.com >
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-06-19 07:52:09 +00:00
mergify[bot]
5ac747ea7d
Reduce responder error prints ( #10664 ) ( #10703 )
...
(cherry picked from commit 0a0f17b9d2
)
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-19 01:16:43 +00:00
mergify[bot]
f522dc1e18
Don't bother api.github.com
on pull requests to avoid getting rate limited ( #10710 )
...
(cherry picked from commit c0389ef82f
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-06-18 23:53:32 +00:00
Michael Vines
486812bf54
Only force up-to-date lock files on edge
2020-06-18 18:57:30 +00:00
Michael Vines
7df8f76df1
Add stub address_labels field for 1.3 compatibility
2020-06-18 18:57:30 +00:00
mergify[bot]
bbe4990e80
Move SDK types to more appropriate files (bp #10638 ) ( #10665 )
...
* Move types to more appropriate files (#10638 )
(cherry picked from commit dac7dc2f10
)
# Conflicts:
# programs/stake/src/stake_instruction.rs
# programs/vote/src/vote_instruction.rs
# sdk/src/system_instruction.rs
* Fix conflicts
* bump lock
Co-authored-by: Jack May <jack@solana.com >
2020-06-18 18:17:43 +00:00
mergify[bot]
a5baaf790d
Do not run buildkite tests if gitbook config modified ( #10692 ) ( #10694 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
(cherry picked from commit 89e0584250
)
# Conflicts:
# ci/buildkite-pipeline.sh
Co-authored-by: Dan Albert <dan@solana.com >
2020-06-18 17:37:56 +00:00
mergify[bot]
0a36ed1b8c
Update testnet shred version ( #10684 ) ( #10686 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 9c22a6007d
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-06-18 08:58:44 +00:00
mergify[bot]
b7ad240375
Update testnet shred version ( #10681 ) ( #10683 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit dae8bc477b
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-06-18 07:47:28 +00:00
mergify[bot]
2cc71f2d55
Merge heaviest bank modules (bp #10672 ) ( #10677 )
...
* Merge heaviest bank modules
* Update lockfiles
Co-authored-by: Greg Fitzgerald <greg@solana.com >
2020-06-18 06:14:53 +00:00
Michael Vines
3125c74681
Remove strict from automerge, add rebase opt in
2020-06-17 20:53:38 -07:00
mergify[bot]
d5b1dee8d6
ignore break ( #10666 ) ( #10669 )
...
(cherry picked from commit a5f82c995e
)
Co-authored-by: anatoly yakovenko <anatoly@solana.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-06-17 20:41:35 -07:00
Stephen Akridge
4b33a2a1b8
Update Cargo.toml version from 1.2.4 to 1.2.5
2020-06-17 18:55:20 -07:00
Tyera Eulberg
58e6a5c281
Add docs to declare_id macro ( #10673 )
...
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-06-17 19:19:06 -06:00
mergify[bot]
7eb61074ab
Simd poh ( #10604 ) ( #10658 )
...
* Simd poh
* Fix poh verify bench
Co-authored-by: sakridge <sakridge@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-06-18 00:34:56 +00:00
mergify[bot]
9b2edbaa9b
Plumb --warp-slot
through net scripts (bp #10639 ) ( #10643 )
...
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
Co-authored-by: Trent Nelson <trent@solana.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-06-17 21:36:04 +00:00
Justin Starry
e8659b45c7
Wait until bank is frozen before sending RPC notifications ( #10654 )
...
(cherry picked from commit 39984cdcc3
)
2020-06-17 13:05:29 -07:00
mergify[bot]
a9553cb401
Entry verify cleanup and gossip counters ( #10632 ) ( #10650 )
...
* Add prune message counter
* Switch to us verification time to match other counters
* Add separate transaction/poh verify timing
Co-authored-by: sakridge <sakridge@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-06-17 19:48:05 +00:00
mergify[bot]
800c409698
Factor out testnet automation SW version resolution ( #10660 )
...
(cherry picked from commit a15f60a291
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-06-17 17:31:11 +00:00
mergify[bot]
b6f484ddee
ClusterInfo cleanup ( #10504 ) ( #10657 )
...
automerge
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-17 15:28:41 +00:00
publish-docs.sh
3c39fee5a8
Add address to non-circulating supply
...
(cherry picked from commit 5673343f49
)
2020-06-16 21:45:51 -07:00
mergify[bot]
560f34d1f6
Fix links in TdS registration docs page ( #10641 ) ( #10645 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
(cherry picked from commit 36ca43e15b
)
Co-authored-by: Dan Albert <dan@solana.com >
2020-06-17 02:43:58 +00:00
Stephen Akridge
dbda50941a
Bump version to 1.2.4
2020-06-16 17:03:09 -07:00
Trent Nelson
f1e68ac25c
Allow pre-existing stake accounts in multinode-demo/delegate-stake.sh
...
(cherry picked from commit ae0d5ba201
)
2020-06-16 15:15:21 -07:00
mergify[bot]
95029b9b05
Enable fork choice and switch votes, devnet => now, testnet => epoch 63 ( #10615 ) ( #10624 )
...
* Enable fork choice, devnet => now, testnet => epoch 63
* Set development to 0
* Enable switch vote slot
Co-authored-by: Carl <carl@solana.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
(cherry picked from commit f8b88d717e
)
Co-authored-by: carllin <wumu727@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-06-16 12:47:58 +00:00
mergify[bot]
a789bf4761
Add generic is_parsable() input validator. ( #10621 )
...
Allow input validators to accept &str, &String and String parameters.
(cherry picked from commit daa2e6363f
)
Co-authored-by: Kristofer Peterson <kris@tranception.com >
2020-06-16 10:33:13 +00:00
mergify[bot]
d2e7ffa8b9
Fix race in remove_unrooted_slot ( #10607 ) ( #10617 )
...
* Fix race
* clippy fixes
* Rename and add comment
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 8bd62d78eb
)
Co-authored-by: carllin <wumu727@gmail.com >
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-06-16 06:20:48 +00:00
mergify[bot]
0914519f6a
Plumb --wait-for-supermajority through scripts ( #10611 ) ( #10614 )
...
(cherry picked from commit 348bf78cd1
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-06-16 03:09:29 +00:00
carllin
43cd5f3730
Disable repeated slot dumping ( #10606 )
...
* Disable repeated slot dumping
* Disable entire codepath
Co-authored-by: Carl <carl@solana.com >
2020-06-15 18:00:23 -07:00
Michael Vines
d396a5f45a
|solana withdraw-from-vote-account| now supports ALL, and refuses to deallocate the vote account ( #10602 )
...
(cherry picked from commit 296ac10b3a
)
2020-06-15 17:17:43 -07:00
Michael Vines
76a7071dba
Add mergify automerge rules
2020-06-15 09:10:42 -07:00
mergify[bot]
133baa8ce6
Fix udp port check retry and check all udp ports ( #10385 ) ( #10577 )
...
automerge
2020-06-14 18:16:15 -07:00
mergify[bot]
5df3510fde
Fix perf-libs version detection ( #10571 ) ( #10574 )
...
automerge
2020-06-14 13:50:29 -07:00
Stephen Akridge
357339273f
Revert "Look at repair peers"
...
This reverts commit 0013bfff4e
.
2020-06-14 09:58:21 -07:00
Stephen Akridge
2500881e0b
Bump version to v1.2.3
2020-06-14 09:58:10 -07:00
Stephen Akridge
0013bfff4e
Look at repair peers
2020-06-14 09:09:57 -07:00
mergify[bot]
f13498b428
Fix fannout gossip bench (bp #10509 ) ( #10556 )
...
automerge
2020-06-14 08:52:00 -07:00
Ryo Onodera
b567138170
Use git diff instead of git show for --check ( #10566 ) ( #10568 )
...
automerge
2020-06-14 07:41:48 -07:00
mergify[bot]
653982cae5
Check the whole range of commits in the topic branch (bp #10560 ) ( #10564 )
...
automerge
2020-06-14 04:53:08 -07:00
mergify[bot]
605f4906ba
Revert "Gossip PullRequests tend to return a lot of duplicates. ( #10326 )" ( #10455 ) ( #10557 )
...
automerge
2020-06-13 23:41:06 -07:00
Michael Vines
d27f24e312
Add merge-stake
subcommmand
...
(cherry picked from commit 0510b6e336
)
2020-06-13 09:50:34 -07:00
Dan Albert
c9c1cb5c9c
Add Trust Wallet security info ( #10516 )
...
automerge
(cherry picked from commit 914f285914
)
2020-06-12 22:14:30 -07:00
mergify[bot]
1cc6493ccf
Split commitment module ( #10541 ) ( #10547 )
...
automerge
2020-06-12 20:59:25 -07:00
Michael Vines
ae47862be2
Add FdGYQ... to non-circulation withdrawer authority list ( #10542 )
...
automerge
(cherry picked from commit f54c049b43
)
2020-06-12 18:35:07 -07:00
Michael Vines
8590184df7
Refine build condition
2020-06-12 17:02:50 -07:00
Michael Vines
d840bbab08
Disable PR builds
2020-06-12 16:51:37 -07:00
mergify[bot]
63314de516
Remove redundant BankForks parameter ( #10537 ) ( #10538 )
...
automerge
2020-06-12 16:41:21 -07:00
mergify[bot]
c47a6e12c7
Improve BPF SDK dependency caching ( #10434 ) ( #10513 )
...
(cherry picked from commit 97f9b63507
)
Co-authored-by: Jack May <jack@solana.com >
2020-06-12 15:36:35 -07:00
mergify[bot]
7937c45ba4
Adopt heaviest subtree fork choice rule ( #10441 ) ( #10515 )
...
automerge
2020-06-12 01:25:47 -07:00
mergify[bot]
813b11ac56
Optimize stale slot shrinking for previously cleaned roots ( #10099 ) ( #10534 )
...
automerge
2020-06-12 00:18:40 -07:00
Michael Vines
ad6883b66a
./scripts/cargo-for-all-lock-files.sh update
2020-06-11 20:48:23 -07:00
Michael Vines
a8f4c4e297
Bump version to 1.2.2
2020-06-11 20:45:13 -07:00
mergify[bot]
6d68e94e4e
Add operating mode gating ( #10332 ) ( #10531 )
...
automerge
2020-06-11 20:05:58 -07:00
mergify[bot]
5dd40d7d88
Enable jsonrpc client ( #10522 ) ( #10525 )
...
automerge
2020-06-11 17:19:26 -07:00
mergify[bot]
3f58177670
Update non-circulating pubkeys ( #10524 ) ( #10527 )
...
automerge
(cherry picked from commit fb8612be49
)
Co-authored-by: Greg Fitzgerald <greg@solana.com >
2020-06-11 16:58:49 -07:00
mergify[bot]
edfd65b115
Distinguish switch/non-switching votes in ReplayStage ( #10218 ) ( #10523 )
...
automerge
2020-06-11 16:43:40 -07:00
Michael Vines
51da66ec84
Force CI_REPO_SLUG
2020-06-11 13:14:07 -07:00
mergify[bot]
ba36308d69
Add StakeInstruction::Merge ( #10503 ) ( #10507 )
...
automerge
2020-06-10 19:08:56 -07:00
mergify[bot]
ee450b2dd0
More reliable way to detect expired transactions ( #10482 ) ( #10505 )
...
automerge
2020-06-10 17:24:47 -07:00
mergify[bot]
84b28fb261
Add back missing pull_response success counter ( #10491 ) ( #10501 )
...
Co-authored-by: sakridge <sakridge@gmail.com >
2020-06-10 15:11:13 -07:00
mergify[bot]
1586b86797
Optimize process pull responses ( #10460 ) ( #10484 ) ( #10490 )
...
automerge
2020-06-10 11:17:46 -07:00
mergify[bot]
8f065e487e
Add ability to change the commission of a vote account (bp #10493 ) ( #10498 )
...
automerge
2020-06-10 10:09:04 -07:00
mergify[bot]
953eadd983
Expose last-valid-slot to BankClient and ThinClient users ( #10478 ) ( #10483 )
...
automerge
2020-06-10 08:43:37 -07:00
mergify[bot]
a4a792facd
Update docs for eager rent collection ( #10348 ) ( #10489 )
...
automerge
2020-06-09 21:12:23 -07:00
mergify[bot]
055f808f98
Clean up delinquency slot distance computation ( #10479 )
...
automerge
2020-06-09 14:22:37 -07:00
mergify[bot]
0404878445
Add SendTransactionService ( #10471 )
...
automerge
2020-06-09 12:25:05 -07:00
mergify[bot]
053907f8a4
Add --warp-slot argument to |solana-ledger-tool create-snapshot| ( #10474 )
...
automerge
2020-06-09 10:49:27 -07:00
Michael Vines
f76dcc1f05
Add missing "
2020-06-08 17:44:27 -07:00
Michael Vines
823bc138cd
Bump new_system_program_activation_epoch by 2
2020-06-08 09:40:12 -07:00
mergify[bot]
18f746b025
Add Algo|Stake as a recommended trusted testnet validator ( #10452 ) ( #10453 )
...
automerge
2020-06-08 08:23:40 -07:00
mergify[bot]
c81adaf901
Remove lock around JsonRpcRequestProcessor ( #10417 ) ( #10451 )
...
automerge
2020-06-07 23:04:56 -07:00
mergify[bot]
2d12ddd0f6
Gossip cleanup remove duplicate gossip metrics and name worker threads ( #10435 ) ( #10448 )
...
automerge
2020-06-06 16:46:36 -07:00
mergify[bot]
bee36cc8d0
Enable and add tick rate to metrics ( #10430 ) ( #10447 )
...
automerge
2020-06-06 13:47:16 -07:00
mergify[bot]
f7aee67023
RPC simulateTransaction endpoint now returns program log output ( #10432 ) ( #10444 )
...
automerge
2020-06-06 11:57:24 -07:00
mergify[bot]
c021727009
Lower counter level ( #10428 ) ( #10436 )
...
automerge
2020-06-05 17:40:59 -07:00
mergify[bot]
6653136e1d
Add Certus One as a trusted validator for testnet ( #10433 ) ( #10438 )
...
automerge
2020-06-05 16:54:38 -07:00
mergify[bot]
06c40c807c
Gossip PullRequests tend to return a lot of duplicates. ( #10326 ) ( #10429 )
...
automerge
2020-06-05 11:51:48 -07:00
mergify[bot]
9b262b4915
Add pull request count metrics ( #10421 ) ( #10427 )
...
automerge
2020-06-05 11:25:26 -07:00
mergify[bot]
cc2d3ecfd7
More cluster stats and add epoch stakes cache in retransmit stage ( #10345 ) ( #10351 )
...
automerge
2020-06-05 10:01:42 -07:00
mergify[bot]
92743499bf
Enable more fine-grained control in partition tests ( #10418 ) ( #10423 )
...
automerge
2020-06-05 00:55:14 -07:00
mergify[bot]
aa6a00a03e
ledger_cleanup_service: compact at a slower rate than purging ( #10414 ) ( #10422 )
...
automerge
2020-06-04 22:56:32 -07:00
mergify[bot]
bd19f7c4cb
Avoid AccountInUse errors when simulating transactions ( #10391 ) ( #10420 )
...
automerge
2020-06-04 20:54:08 -07:00
mergify[bot]
988bf65ba4
Deactivate legacy_system_instruction_processor at epoch 58/38 (preview/stable) ( #10406 ) ( #10408 )
...
automerge
2020-06-04 01:33:09 -07:00
mergify[bot]
d5b03bd824
Don't reuse executable accounts between instructions ( #10403 ) ( #10405 )
...
automerge
2020-06-03 23:36:14 -07:00
mergify[bot]
6a72dab111
Enable rolling update of "Permit paying oneself" / "No longer allow create-account to add funds to an existing account" (bp #10375 ) ( #10404 )
...
automerge
2020-06-03 18:22:03 -07:00
mergify[bot]
56e8319a6d
Add built-in programs to InvokeContext ( #10383 ) ( #10402 )
...
automerge
2020-06-03 14:25:16 -07:00
mergify[bot]
aed1e51ef1
Throw error if no release version ( #10396 ) ( #10397 )
...
automerge
2020-06-03 11:15:39 -07:00
mergify[bot]
f4278d61df
Cache tvu peers for broadcast ( #10373 ) ( #10393 )
...
automerge
2020-06-03 10:15:47 -07:00
mergify[bot]
a5c3ae3cef
Don't share same snapshot dir for secondary access ( #10384 ) ( #10387 )
...
automerge
2020-06-03 04:12:51 -07:00
mergify[bot]
05c052e212
Support opening an in-use rocksdb as secondary ( #10209 ) ( #10382 )
...
automerge
2020-06-02 23:09:22 -07:00
mergify[bot]
dc05bb648a
Purge TransactionStatus and AddressSignatures exactly from ledger-tool ( #10358 ) ( #10376 )
...
automerge
2020-06-02 20:12:46 -07:00
mergify[bot]
800b65b2f6
Cleanup program docs ( #10283 ) ( #10360 )
...
automerge
2020-06-02 03:32:09 -07:00
mergify[bot]
ae1a0f57c5
Add preflight checks to sendTransaction RPC method (bp #10338 ) ( #10363 )
...
automerge
2020-06-01 22:27:30 -07:00
mergify[bot]
df7c44bd0c
Add docs for the builtin programs ( #10359 ) ( #10365 )
...
automerge
2020-06-01 20:17:01 -07:00
Tyera Eulberg
3e29cfd712
v1.2: backport exchange doc fmt ( #10357 )
...
* Exchange doc reformat (#10353 )
* Exchange doc reformat pt2 (#10355 )
2020-06-01 15:17:23 -06:00
mergify[bot]
202031538f
Restore archiver design document ( #10352 ) ( #10354 )
...
automerge
2020-06-01 09:55:36 -07:00
mergify[bot]
29ff1b925d
Reduce stable jobs ( #10344 ) ( #10347 )
...
automerge
2020-05-31 22:49:56 -07:00
mergify[bot]
5a91db6e62
Program address nits (bp #10261 ) ( #10262 )
...
automerge
2020-05-31 09:05:37 -07:00
mergify[bot]
94ba700e58
Permit paying oneself ( #10337 ) ( #10342 )
...
automerge
2020-05-31 08:50:42 -07:00
mergify[bot]
1964c6ec29
Don't attempt to resolve mainnet-beta in the test suite ( #10328 ) ( #10334 )
...
automerge
2020-05-29 20:01:26 -07:00
mergify[bot]
4dd6591bfd
Added --health-check-slot-distance ( #10324 ) ( #10331 )
...
automerge
2020-05-29 17:10:46 -07:00
mergify[bot]
163217815b
Improve Rpc inflation tooling (bp #10309 ) ( #10322 )
...
automerge
2020-05-29 14:09:41 -07:00
mergify[bot]
37c182cd5d
log leader ( #10280 ) ( #10315 )
...
automerge
2020-05-29 13:38:46 -07:00
mergify[bot]
0c68f27ac3
Fix repair dos ( #10299 ) ( #10303 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit e68621b8bb
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-05-28 21:48:29 -07:00
mergify[bot]
5fb8da9b35
Feign RPC health while in a --wait-for-supermajority
holding pattern ( #10295 ) ( #10301 )
...
(cherry picked from commit 0442c45d5b
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-05-28 21:46:38 -07:00
mergify[bot]
74d9fd1e4f
verify_reachable_ports: Handle errors without expect() ( #10298 ) ( #10305 )
...
automerge
2020-05-28 17:11:34 -07:00
mergify[bot]
e71206c578
Add more logging while unpacking snapshots ( #10266 ) ( #10270 )
...
automerge
2020-05-28 13:47:58 -07:00
mergify[bot]
0141c80238
Skip gossip requests with different shred version and split lock ( #10240 ) ( #10297 )
...
automerge
2020-05-28 13:24:56 -07:00
Michael Vines
ed928cfdf7
Add commitment parameter to getFeeCalculatorForBlockhash ( #10255 ) ( #10296 )
...
automerge
2020-05-28 13:22:46 -07:00
mergify[bot]
2fd319ab7a
Verify TPU and serve repair ports are reachable ( #10291 ) ( #10294 )
...
automerge
2020-05-28 10:14:14 -07:00
mergify[bot]
7813a1decd
Purge next slots to avoid a blockstore_processor panic on restart ( #10281 ) ( #10285 )
...
(cherry picked from commit 5ac2ae1178
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-05-28 08:40:41 -07:00
mergify[bot]
93e4ed1f75
Include GenesisConfig inflation in Display ( #10282 ) ( #10289 )
...
automerge
2020-05-28 00:21:58 -07:00
mergify[bot]
a70f31b3da
Use correct --url ( #10284 ) ( #10287 )
...
automerge
2020-05-27 22:12:47 -07:00
Michael Vines
2d25227d0a
Adjust mainnet-beta shred version
2020-05-27 17:11:34 -07:00
mergify[bot]
fc7bfd0f67
Cleanup programming model doc ( #10274 ) ( #10276 )
...
automerge
2020-05-27 15:31:40 -07:00
mergify[bot]
2996291b37
CLI: Improve stake (de)activation display ( #10273 )
...
automerge
2020-05-27 14:45:20 -07:00
mergify[bot]
3e80b9231c
Add exchange integration docs ( #10054 ) ( #10267 )
...
automerge
2020-05-27 12:18:24 -07:00
Tyera Eulberg
78231a8682
Update Cargo.lock files ( #10271 )
...
automerge
2020-05-27 12:09:48 -07:00
Michael Vines
ace711e7f1
Bump version to 1.2.1
2020-05-26 19:07:35 -07:00
Michael Vines
c9cbc39ec9
Wait for one slot to be produced ( #10257 )
...
automerge
(cherry picked from commit 22a98bd27a
)
2020-05-26 17:58:45 -07:00
mergify[bot]
606a392d50
Cli: expose last-valid-slot in solana fees ( #10254 ) ( #10256 )
...
automerge
(cherry picked from commit b6083ca107
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-05-26 17:38:14 -06:00
mergify[bot]
c67596ceb4
Add mechanism to get blockhash's last valid slot ( #10239 ) ( #10253 )
...
automerge
2020-05-26 14:33:11 -07:00
Ryo Onodera
9a42cc7555
Lower owner hashing activation slot for devnet ( #10244 )
...
automerge
2020-05-26 12:08:22 -07:00
mergify[bot]
2e5ef2a802
Update cross-program and program address proposals (bp #10234 ) ( #10241 )
...
automerge
2020-05-26 08:51:16 -07:00
mergify[bot]
8c8e2c4b2b
Prevent privilege escalation ( #10232 ) ( #10247 )
...
automerge
2020-05-26 02:39:28 -07:00
mergify[bot]
0578801f99
Remove storage rpc docs ( #10238 ) ( #10242 )
...
automerge
2020-05-25 22:45:18 -07:00
mergify[bot]
6141e1410a
Cluster info metrics ( #10215 ) ( #10236 )
...
automerge
2020-05-25 16:39:08 -07:00
mergify[bot]
4fc86807ff
Re-enable move in docker-solana ( #10214 ) ( #10228 )
...
automerge
2020-05-25 01:32:54 -07:00
Michael Vines
d2a2eba69e
v1.2: Include account.owner into account hash ( #9918 ) ( #10222 )
...
automerge
2020-05-25 00:34:54 -07:00
Michael Vines
156387aba4
LedgerCleanupService no longer causes an OOM and actually purges ( #10199 )
...
* cleanup_ledger() now services new_root_receiver while purging
* purge_slots() now fully deletes before compacting
* Add ledger pruning grafana graph
2020-05-24 21:41:54 -07:00
dependabot-preview[bot]
8a8384e674
Bump sha2 from 0.8.1 to 0.8.2 ( #10205 )
...
* Bump sha2 from 0.8.1 to 0.8.2
Bumps [sha2](https://github.com/RustCrypto/hashes ) from 0.8.1 to 0.8.2.
- [Release notes](https://github.com/RustCrypto/hashes/releases )
- [Commits](https://github.com/RustCrypto/hashes/compare/sha2-v0.8.1...sha2-v0.8.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-24 19:44:04 -07:00
dependabot-preview[bot]
58ae9ab34f
Bump zstd from 0.5.1+zstd.1.4.4 to 0.5.2+zstd.1.4.5 ( #10207 )
...
Bumps [zstd](https://github.com/gyscos/zstd-rs ) from 0.5.1+zstd.1.4.4 to 0.5.2+zstd.1.4.5.
- [Release notes](https://github.com/gyscos/zstd-rs/releases )
- [Commits](https://github.com/gyscos/zstd-rs/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-24 19:39:38 -07:00
dependabot-preview[bot]
3dfef813bf
Bump hidapi from 1.2.1 to 1.2.2 ( #10210 )
...
Bumps [hidapi](https://github.com/ruabmbua/hidapi-rs ) from 1.2.1 to 1.2.2.
- [Release notes](https://github.com/ruabmbua/hidapi-rs/releases )
- [Commits](https://github.com/ruabmbua/hidapi-rs/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-24 19:39:06 -07:00
carllin
3aae98c8be
Add switching vote instruction ( #10197 )
...
* Add switching vote
* Make sure vote size stays under gossip limit
Co-authored-by: Carl <carl@solana.com >
2020-05-24 15:38:35 -07:00
Ryo Onodera
8d32441b96
Fix ledger-tool create-snapshot and add sanity test ( #10212 )
...
automerge
2020-05-24 08:27:36 -07:00
Michael Vines
26acd6aafa
Sort notifications for easier scanning on Discord ( #10208 )
...
automerge
2020-05-24 00:20:57 -07:00
Dan Albert
7373163bed
Update whitelist.rs ( #10203 )
2020-05-23 17:46:59 -06:00
Dan Albert
a21409e97e
Update whitelist.rs ( #10202 )
...
automerge
2020-05-23 10:51:15 -07:00
anatoly yakovenko
9fae5aacc2
grammar ( #10200 )
...
automerge
2020-05-23 08:13:20 -07:00
carllin
42aaacf520
Factor out LockedPubkeyReferences ( #10198 )
...
Co-authored-by: Carl <carl@solana.com >
2020-05-22 23:23:17 -07:00
Greg Fitzgerald
36a36d1c83
No longer allow create-account to add funds to an existing account ( #10192 )
...
automerge
2020-05-22 16:39:01 -07:00
dependabot-preview[bot]
2d3a906d55
Bump tar from 0.4.27 to 0.4.28 ( #10185 )
...
Bumps [tar](https://github.com/alexcrichton/tar-rs ) from 0.4.27 to 0.4.28.
- [Release notes](https://github.com/alexcrichton/tar-rs/releases )
- [Commits](https://github.com/alexcrichton/tar-rs/compare/0.4.27...0.4.28 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-22 15:55:40 -07:00
Michael Vines
48c0845359
Update another non-circulating account
2020-05-22 15:11:33 -07:00
sakridge
10b1895357
Optimize banking processing of AccountInUse ( #10154 )
...
* Optimize banking processing of AccountInUse and thread count
* Add more options to banking-bench
2020-05-22 15:01:01 -07:00
sakridge
f1e932c90a
Trigger notifications on supermajority votes confirmation ( #10137 )
...
automerge
2020-05-22 14:53:47 -07:00
Michael Vines
269db1710e
Retry a couple times before declaring a UDP port unreachable ( #10181 )
2020-05-22 14:33:01 -07:00
Michael Vines
e2b5cd6d47
Add another non-circulating account ( #10186 )
...
automerge
2020-05-22 13:06:03 -07:00
Tyera Eulberg
2928c5d103
Add SingleGossip commitment level to use for subscriptions ( #10147 )
...
automerge
2020-05-22 12:55:17 -07:00
sakridge
2324eb9ff9
Make slot history a billion times faster ( #10175 )
2020-05-22 11:15:16 -07:00
Kristofer Peterson
b7a32f01c0
Multi-version snapshot support ( #9980 )
...
* Multi-version snapshot support
* rustfmt
* Remove CLI options and runtime support for selection output snapshot version.
Address some clippy complaints.
* Muzzle clippy type complexity warning.
Despite clippy's suggestion, it is not currently possible to create type aliases
for traits and so everything within the 'Box<...>' cannot be type aliased.
This then leaves creating full blown traits, and either implementing
said traits by closure (somehow) or moving the closures into new structs
implementing said traits which seems a bit of a palaver.
Alternatively it is possible to define and use the type alias 'type ResultBox<T> = Result<Box<T>>'
which does seems rather pointless and not a great reduction in complexity but is enough to keep clippy happy.
In the end I simply went with squelching the clippy warning.
* Remove now unused Serialize/Deserialize trait implementations for AccountStorageEntry and AppendVec
* refactor versioned de/serialisers
* rename serde_utils to serde_snapshot
* move call to accounts_db.generate_index() back down to context_accountsdb_from_stream()
* update version 1.1.1 to 1.2.0
remove nested use of serialize_bytes
* cleanups
* Add back measurement of account storage entry serialization.
Remove construction of Vec and HashMap temporaries during serialization.
* consolidate serialisation test cases into serde_snapshot.
clean up leakage of implementation details in serde_snapshot.
* move short term / legacy snapshot code into child module
* add serialize_iter_as_tuple
* preliminary integration of following commit
commit 6d58b73c47294bfb93465d5a83cd2175660b6e6d
Author: Ryo Onodera <ryoqun@gmail.com >
Date: Wed May 20 14:02:02 2020 +0900
Confine snapshot 1.1 relic to versioned codepath
* refactored serde_snapshot, rustfmt
legacy accounts_db format now "owns" both leading u64s, legacy bank_rc format has none
* reduce type complexity (clippy)
2020-05-23 02:54:24 +09:00
Dan Albert
967320a091
Update whitelist.rs ( #10183 )
...
automerge
2020-05-22 10:10:26 -07:00
Michael Vines
4779858dd4
Clean up RPCClient retry handling: only retry on 429, after a little sleep ( #10182 )
2020-05-22 08:53:53 -07:00
dependabot-preview[bot]
c7cdbc98e5
Bump thiserror from 1.0.18 to 1.0.19 ( #10180 )
...
* Bump thiserror from 1.0.18 to 1.0.19
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 1.0.18 to 1.0.19.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.18...1.0.19 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-21 23:36:04 -07:00
anatoly yakovenko
c78fd2b36d
document optimistic confirmation and slashing roadmap ( #10164 )
...
* docs
* book nits
* Update docs/src/proposals/optimistic-confirmation-and-slashing.md
Co-authored-by: Michael Vines <mvines@gmail.com >
* Update optimistic-confirmation-and-slashing.md
* Update optimistic-confirmation-and-slashing.md
* Update optimistic-confirmation-and-slashing.md
* Update optimistic-confirmation-and-slashing.md
* Update optimistic-confirmation-and-slashing.md
* fixups
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-05-21 18:15:09 -07:00
Tyera Eulberg
12a3b1ba6a
Fixup deserialize_bs58_transaction, and make a few error types more targeted ( #10171 )
...
automerge
2020-05-21 17:30:02 -07:00
Michael Vines
18be7a7966
REST API now returns supply in SOL rather than lamports ( #10170 )
...
automerge
2020-05-21 15:50:06 -07:00
Michael Vines
56c7e4a66c
ping now reuses the same blockhash for a minute ( #10165 )
2020-05-21 14:11:47 -07:00
Michael Vines
486168b796
Revert "Add AVX2 runtime checks ( #10033 )" ( #10167 )
...
This reverts commit cf8eb7700b
.
2020-05-21 13:13:52 -07:00
Michael Vines
074c41556f
Add hQB.. to the testnet whitelist
2020-05-21 12:22:38 -07:00
Justin Starry
10d60288e8
Update default subscription commitment level from recent to single ( #10161 )
...
* Update default subscription commitment level from recent to single
* Update jsonrpc docs
* Fix failing tests
2020-05-22 00:33:24 +08:00
Michael Vines
77d42654dc
Update .gitignore
2020-05-20 23:59:41 -07:00
Michael Vines
07243dc87f
Add stake-o-matic.sh
2020-05-20 22:30:09 -07:00
Michael Vines
429802a138
Avoid sending duplicate stake delegation transactions for the same epoch ( #10158 )
...
automerge
2020-05-20 21:26:47 -07:00
dependabot-preview[bot]
8da2e1b2f7
Bump tar from 0.4.26 to 0.4.27 ( #10150 )
...
Bumps [tar](https://github.com/alexcrichton/tar-rs ) from 0.4.26 to 0.4.27.
- [Release notes](https://github.com/alexcrichton/tar-rs/releases )
- [Commits](https://github.com/alexcrichton/tar-rs/compare/0.4.26...0.4.27 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-20 20:04:22 -07:00
Michael Vines
324cfd40f0
Add v0 REST APIs for circulating and total supply ( #10102 )
2020-05-20 20:04:07 -07:00
Greg Fitzgerald
64cec764b9
Allow RpcClient users to inject custom "senders" ( #10157 )
...
automerge
2020-05-20 18:40:45 -07:00
sakridge
ce17de7d25
Add option to wait for a specific epoch length to bench-tps ( #10083 )
2020-05-20 16:42:46 -07:00
Michael Vines
417f0e41fa
Add stake-o-matic ( #10044 )
...
automerge
2020-05-20 16:15:03 -07:00
Michael Vines
d6d032dd49
Fetch rpc-url from the gossip entrypoint ( #10152 )
...
automerge
2020-05-20 14:52:41 -07:00
Michael Vines
357a00d2bc
transaction-history now searches over the entire history by default ( #10145 )
...
automerge
2020-05-20 14:15:31 -07:00
Tyera Eulberg
276815bd33
Fixup subscription docs ( #10146 )
2020-05-20 13:19:03 -06:00
Jack May
4a72c2b054
Support cross-program invocation to native programs ( #10136 )
2020-05-20 09:24:57 -07:00
Tyera Eulberg
9d89fb5c35
Fix another unstable test after eager rent ( #10120 )
2020-05-20 09:57:33 -06:00
Michael Vines
ad7b113944
Ignore test_tvu_exit ( #10134 )
...
automerge
2020-05-19 23:40:27 -07:00
Michael Vines
f33688361c
multinode-demo/faucet.sh is no longer required ( #10129 )
2020-05-19 20:07:30 -07:00
Jack May
36627fb8b3
move builtin programs out of bank ( #10132 )
...
automerge
2020-05-19 19:45:30 -07:00
Michael Vines
f27d001b7a
Remove obsolete testnet management scripts ( #10130 )
...
automerge
2020-05-19 18:26:27 -07:00
Greg Fitzgerald
d9919b99d2
Remove folds ( #10128 )
...
automerge
2020-05-19 18:13:41 -07:00
carllin
439fd30840
Fix erasure ( #10095 )
...
* Fix bad FEC blocks
* Add test
Co-authored-by: Carl <carl@solana.com >
2020-05-19 16:13:12 -07:00
Greg Fitzgerald
e66b5d09db
Rename getCirculatingSuppy to getSupply in JSON API doc ( #10121 )
...
automerge
2020-05-19 15:37:26 -07:00
Michael Vines
d5d06e6be0
Add CommitmentConfig::single() support to the cli ( #10114 )
...
automerge
2020-05-19 13:45:21 -07:00
carllin
97f2bcff69
master: Add nonce to shreds repairs, add shred data size to header ( #10109 )
...
* Add nonce to shreds/repairs
* Add data shred size to header
Co-authored-by: Carl <carl@solana.com >
2020-05-19 12:38:18 -07:00
Michael Vines
427c78d891
Add SimulateTransaction RPC endpoint ( #10106 )
...
automerge
2020-05-19 12:08:19 -07:00
dependabot-preview[bot]
5e43304eca
Bump byte-unit from 3.0.3 to 3.1.1 ( #10098 )
...
Bumps [byte-unit](https://github.com/magiclen/byte-unit ) from 3.0.3 to 3.1.1.
- [Release notes](https://github.com/magiclen/byte-unit/releases )
- [Commits](https://github.com/magiclen/byte-unit/compare/v3.0.3...v3.1.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-19 09:03:30 -06:00
dependabot-preview[bot]
d34b9ba306
Bump thiserror from 1.0.17 to 1.0.18 ( #10079 )
...
* Bump thiserror from 1.0.17 to 1.0.18
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 1.0.17 to 1.0.18.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.17...1.0.18 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <anatoly+githubjenkins@solana.io >
2020-05-19 09:02:45 -06:00
Tyera Eulberg
fac854eb9d
Remove sdk-c ( #10107 )
2020-05-18 21:04:47 -06:00
Jack May
431a228402
fix clock bankhash mismatch ( #10078 )
...
automerge
2020-05-18 19:48:06 -07:00
Greg Fitzgerald
300b33a20e
Add unique_signers() to SDK ( #10105 )
...
automerge
2020-05-18 18:31:45 -07:00
Tyera Eulberg
759c0e0b03
Update accounts whitelist ( #10100 )
2020-05-18 14:17:56 -06:00
Michael Vines
bbc549f592
Rename program_id to owner in system instructions ( #10069 )
2020-05-18 12:55:41 -07:00
Tyera Eulberg
bac4aec16f
Trigger RPC notifications after block commitment cache update ( #10077 )
...
* Fixup commitment-aggregation metric
* Trigger notifications after commitment-cache update
* Fixup fn name
* Add single-confirmation commitment level
* Rename to highest_confirmed_slot
* Pass commitment-cache info directly to notifications
* Use match
* Update commitment docs
* Update out of date pubsub docs
2020-05-18 12:49:01 -06:00
Kristofer Peterson
4ca352a344
Use serde provided serialization for atomics ( #10096 )
...
automerge
2020-05-18 08:30:27 -07:00
Reisen
bfcfbab818
Add Vote PubSub endpoint for live gossip votes. ( #10045 )
...
* Add Vote PubSub endpoint for live gossip votes.
* Updated tests for Vote RPC and Vote Listener
* Add JSON RPC documentation for Vote RPC.
* Base58 encode hash in Vote RPC response.
2020-05-17 15:01:08 -06:00
sakridge
9222bc2b35
Add 30s option to metrics. ( #10081 )
...
10s too short, 1m too long, 30s just right.
2020-05-16 10:46:17 -07:00
sakridge
f562ed4cc8
Distinguish between shred type in shred fetch stage duplicate filter ( #10068 )
...
* Shred type check
* Test
2020-05-15 13:23:56 -07:00
sakridge
c4a096d8d4
Wait 15 seconds for gossip rpc url ( #10053 )
2020-05-15 13:23:40 -07:00
Greg Fitzgerald
5e89bd8868
Panic if no fee-payer found via Message::new() ( #10050 )
...
automerge
2020-05-15 12:23:09 -07:00
Michael Vines
7080fb9b37
Abort if the open fd limit cannot be increased ( #10064 )
...
automerge
2020-05-15 12:14:21 -07:00
Dan Albert
a32f34f131
Add docs section to upgrade Solana App on Ledger Live ( #10070 )
...
automerge
2020-05-15 11:26:40 -07:00
Greg Fitzgerald
f342a50a76
Don't discard transaction record when blockhash not found ( #10058 )
...
* Don't discard transaction records
Not enough certainty, because only half the blockhashes
are returned via the RPC call. Even if all 300, there's
still the possiblity other validators are behind, and
a superamajority will vote on on a block that includes
the transaction.
* fmt
2020-05-15 11:43:30 -06:00
Kristofer Peterson
58ef02f02b
9951 clippy errors in the test suite ( #10030 )
...
automerge
2020-05-15 09:35:43 -07:00
Michael Vines
1da1667920
Forge a confirmed root before halting for RPC inspection ( #10061 )
2020-05-15 09:02:48 -07:00
Justin Starry
b762319fc5
Correct comment stating lockup gates stake authorize ixs ( #10063 )
...
* Correct old comment stating lockup gates stake authorize ixs
* Delete dead stake code
2020-05-15 22:02:20 +08:00
dependabot-preview[bot]
6a6c5f196a
Bump libc from 0.2.69 to 0.2.70 ( #10006 )
...
* Bump libc from 0.2.69 to 0.2.70
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.69 to 0.2.70.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.69...0.2.70 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-15 06:18:43 -06:00
dependabot-preview[bot]
22cddcb1a6
Bump thiserror from 1.0.16 to 1.0.17 ( #10020 )
...
* Bump thiserror from 1.0.16 to 1.0.17
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 1.0.16 to 1.0.17.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.16...1.0.17 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-15 06:17:42 -06:00
Tyera Eulberg
63813fe69f
Add Ledger error codes ( #10056 )
...
automerge
2020-05-14 21:52:11 -07:00
Greg Fitzgerald
adcd2f14a5
Minor fixes to solana-tokens ( #10057 )
...
automerge
2020-05-14 21:23:35 -07:00
Jack May
eb1acaf927
Remove archiver and storage program ( #9992 )
...
automerge
2020-05-14 18:22:47 -07:00
Michael Vines
9ef9969d29
Remove notifier module duplication ( #10051 )
2020-05-14 17:32:08 -07:00
Tyera Eulberg
40b7c11262
Base58 ( #10052 )
2020-05-14 17:23:29 -06:00
Dan Albert
d195dce5d1
Clean up Ledger instructions ( #10047 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
2020-05-14 14:03:16 -06:00
dependabot-preview[bot]
816bf6ebdd
Bump fnv from 1.0.6 to 1.0.7 ( #10046 )
...
* Bump fnv from 1.0.6 to 1.0.7
Bumps [fnv](https://github.com/servo/rust-fnv ) from 1.0.6 to 1.0.7.
- [Release notes](https://github.com/servo/rust-fnv/releases )
- [Commits](https://github.com/servo/rust-fnv/compare/v1.0.6...v1.0.7 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-14 12:29:11 -07:00
Tyera Eulberg
ed53a70b5c
Cli: transfer ALL; check spend+fee in client ( #10012 )
...
* lamports->SOL in user-facing error msg
* Check for sufficient balance for spend and fee
* Add ALL option to solana transfer
* Rework TransferAmount to check for sign_only in parse
* Refactor TransferAmount & fee-check handling to be more general
* Add addl checks mechanism
* Move checks out of cli.rs
* Rename to SpendAmount to be more general & move
* Impl ALL/spend helpers for create-nonce-account
* Impl spend helpers for create-vote-account
* Impl ALL/spend helpers for create-stake-account
* Impl spend helpers for ping
* Impl ALL/spend helpers for pay
* Impl spend helpers for validator-info
* Remove unused fns
* Remove retry_get_balance
* Add a couple unit tests
* Rework send_util fn signatures
2020-05-14 12:24:14 -06:00
Michael Vines
4e4a21f9b7
solana-gossip spy
can now specify a shred version (#10040 )
2020-05-13 19:37:40 -07:00
Jack May
c5460e7fee
Remove inline from all BPF C functions ( #10038 )
2020-05-13 17:23:39 -07:00
Trent Nelson
cf8eb7700b
Add AVX2 runtime checks ( #10033 )
...
automerge
2020-05-13 12:19:22 -07:00
Ryo Onodera
13bc3f8094
Fix unstable test after eager rent collection ( #10031 )
...
automerge
2020-05-13 10:35:58 -07:00
sakridge
9575afc8fa
Refactor blockstore recovery code ( #10008 )
2020-05-13 10:09:38 -07:00
Jack May
1e80044e93
fix docs makefile ( #10016 )
2020-05-13 09:08:25 -07:00
Greg Fitzgerald
e09f517094
Add solana-tokens ( #10011 )
...
* Initial commit
* Execute transfers
* Refactor for testing
* Cleanup readme
* Rewrite
* Cleanup
* Cleanup
* Cleanup client
* Use a Null Client to move prints closer to where messages are sent
* Upgrade Solana
* Move core functionality into its own module
* Handle transaction errors
* Merge allocations
* Fixes
* Cleanup readme
* Fix markdown
* Add example input
* Add integration test - currently fails
* Add integration test
* Add metrics
* Use RpcClient in dry-run, just don't send messages
* More metrics
* Fix dry run with no keys
* Only require one approval if fee-payer is the sender keypair
* Fix bugs
* Don't create the transaction log if nothing to put into it;
otherwise the next innvocation won't add the header
* Apply previous transactions to allocations with matching recipients
* Bail out of any account already has a balance
* Polish
* Add new 'balances' command
* 9 decimal places
* Add missing file
* Better dry-run; keypair options now optional
* Change field name from 'bid' to 'accepted'
Also, tolerate precision change from 2 decimal places to 4
* Write to transaction log immediately
* Rename allocations_csv to bids_csv
So that we can bypass bids_csv with an allocations CSV file
* Upgrade Solana
* Remove faucet from integration test
* Cleaner integration test
Won't work until this lands and is released:
https://github.com/solana-labs/solana/pull/9717
* Update README
* Add TravicCI script to build and test (#1 )
* Add distribute-stake command (#2 )
* Distribute -> DistributeTokens (#3 )
* Cache cargo deps (#4 )
* Add docs (#5 )
* Switch to latest Solana 1.1 release (#7 )
* distribute -> distribute-tokens (#9 )
* Switch from CSV to a pickledb database (#8 )
* Switch from CSV to a pickledb database
* Allow PickleDb errors to bubble up
* Dedup
* Hoist db
* Add finalized field to TransactionInfo
* Don't allow RPC client to resign transactions
* Remove dead code
* Use transport::Result
* Record unconfirmed transaction
* Fix: separate stake account per allocation
* Catch transport errors
* Panic if we attempt to replay a transaction that hasn't been finalized
* Attempt to fix CI
PickleDb isn't calling flush() or close() after writing to files.
No issue on MacOS, but looks racy in CI.
* Revert "Attempt to fix CI"
This reverts commit 1632394f636c54402b3578120e8817dd1660e19b.
* Poll for signature before returning
* Add --sol-for-fees option for stake distributions
* Add --allocations-csv option (#14 )
* Add allocations-csv option
* Add tests or GTFO
* Apply review feedback
* apply feedback
* Add read_allocations function
* Update arg_parser.rs
* Fix balances command (#17 )
* Fix balances command
* Fix readme
* Add --force to transfer to non-empty accounts (#18 )
* Add --no-wait (#16 )
* Add ThinClient methods to implement --no-wait
* Plumb --no-wait through
No tests yet
* Check transaction status on startup
* Easier to test
* Wait until transaction is finalized before checking if it failed with an error
It's possible that a minority fork thinks it failed.
* Add unit tests
* Remove dead code and rustfmt
* Don't flush database to file if doing a dry-run
* Continue when transactions not yet finalized (#20 )
If those transactions are dropped, the next run will execute them.
* Return the number of confirmations (#21 )
* Add read_allocations() unit-test (#22 )
Delete the copy-pasted top-level test.
Fixes #19
* Add a CSV printer (#23 )
* Remove all the copypasta (#24 )
* Move resolve_distribute_stake_args into its own function
* Add stake args to token args
* Unify option names
* Move Command::DistributeStake into DistributeTokens
* Remove process_distribute_stake
* Only unique signers
* Use sender keypair to fund new fee-payer accounts
* Unify distribute_tokens and distribute_stake
* Rename print-database command to transaction-log (#25 )
* Send all transactions as quickly as possible, then wait (#26 )
* Send all transactions as quickly as possible, then wait
* Exit when finalized or blockhashes have expired
* Don't need blockhash in the CSV output
* Better types
CSV library was choking on Pubkey as a type. PickleDb doesn't have that problem.
* Resend if blockhash has not expired
* Attempt to fix CI
* Move log to stderr
* Add constructor, tuck away client (#30 )
* Add constructor, tuck away client
* Fix unwrap() caught by CI
* Fix optional option flagged as required
* Bunch of cleanup (#31 )
* Remove untested --no-wait feature
* Make --transactions-db an option, not an arg
So that in the future, we can make it optional
* Remove more untested features
Too many false positives in that santity check. Use --dry-run
instead.
* Add dry-run mode to ThinClient
* Cleaner dry-run
* Make key parameters required
Just don't use them in --dry-run
* Add option to write the transaction log
--dry-run doesn't write to the database. Use this option if you
want a copy of the transaction log before the final run.
* Revert --transaction-log addition
Implement #27 first
* Fix CI
* Update readme
* Fix CI in copypasta
* Sort transaction log by finalized date (#33 )
* Make --transaction-db option implicit (#34 )
* Move db functionality into its own module (#35 )
* Move db functionality into its own module
* Rename tokens module to commands
* Version bump
* Upgrade Solana
* Add solana-tokens to build
* Remove Cargo.lock
* Remove vscode file
* Remove TravisCI build script
* Install solana-tokens
Co-authored-by: Dan Albert <dan@solana.com >
2020-05-13 08:36:30 -06:00
Ryo Onodera
1eb40c3fe0
Introduce eager rent collection ( #9527 )
...
* Switch AccountsIndex.account_maps from HashMap to BTreeMap
* Introduce eager rent collection
* Start to add tests
* Avoid too short eager rent collection cycles
* Add more tests
* Add more tests...
* Refacotr!!!!!!
* Refactoring follow up
* More tiny cleanups
* Don't rewrite 0-lamport accounts to be deterministic
* Refactor a bit
* Do hard fork, restore tests, and perf. mitigation
* Fix build...
* Refactor and add switch over for testnet (TdS)
* Use to_be_bytes
* cleanup
* More tiny cleanup
* Rebase cleanup
* Set Bank::genesis_hash when resuming from snapshot
* Reorder fns and clean ups
* Better naming and commenting
* Yet more naming clarifications
* Make prefix width strictly uniform for 2-base partition_count
* Fix typo...
* Revert cluster-dependent gate
* kick ci?
* kick ci?
* kick ci?
2020-05-13 16:22:14 +09:00
Tyera Eulberg
ee7f15eff1
Rpc: optionally filter getLargestAccounts by circulating/nonCirculating ( #10007 )
...
* Add circ/non-circ filter to getLargestAccounts
* Plumb largest accounts into client and cli
* Bump timeout toward CI flakiness
* Update docs
2020-05-12 21:05:05 -06:00
sakridge
a9b82cf95b
Enable disk metrics ( #10009 )
2020-05-12 15:24:39 -07:00
Justin Starry
5cc252d471
Remove hash field from account ( #9915 )
2020-05-12 23:39:46 +08:00
Michael Vines
a75086287c
Use CommitmentConfig::root() when checking accounts, CommitmentConfig::max() may not be available yet ( #9999 )
...
automerge
2020-05-12 00:24:04 -07:00
Michael Vines
a5fb3fc220
Update testnet shred version ( #10000 )
...
automerge
2020-05-11 23:30:00 -07:00
Michael Vines
28d1f7c5e7
Fix crash when CI_COMMIT=HEAD ( #9994 )
...
automerge
2020-05-11 22:49:29 -07:00
carllin
59de1b3b62
Compute Switch Threshold ( #9218 )
...
* Add switching threshold check
Co-authored-by: Carl <carl@solana.com >
2020-05-11 22:20:11 -07:00
Michael Vines
84b6120983
getClusterNodes RPC API now includes the node software version ( #9990 )
2020-05-11 21:30:01 -07:00
Michael Vines
3b9dc50541
Fix up a couple cli commands that fail when a node is in the --wait-for-supermajority
state ( #9985 )
...
automerge
2020-05-11 16:07:40 -07:00
Michael Vines
2521f75c18
Advertise node software version in gossip ( #9981 )
...
* Advertise node version in gossip
* Remove solana_clap_utils::version! macro
2020-05-11 15:02:01 -07:00
Tyera Eulberg
965204b8e0
Check slot cleaned up for RPC blockstore/slot queries ( #9982 )
...
automerge
2020-05-11 14:47:40 -07:00
dependabot-preview[bot]
6660e93c39
Bump clap from 2.33.0 to 2.33.1 ( #9978 )
...
* Bump clap from 2.33.0 to 2.33.1
Bumps [clap](https://github.com/clap-rs/clap ) from 2.33.0 to 2.33.1.
- [Release notes](https://github.com/clap-rs/clap/releases )
- [Changelog](https://github.com/clap-rs/clap/blob/v2.33.1/CHANGELOG.md )
- [Commits](https://github.com/clap-rs/clap/compare/v2.33.0...v2.33.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-11 14:32:50 -07:00
dependabot-preview[bot]
4fd7526852
Bump signal-hook from 0.1.14 to 0.1.15 ( #9979 )
...
Bumps [signal-hook](https://github.com/vorner/signal-hook ) from 0.1.14 to 0.1.15.
- [Release notes](https://github.com/vorner/signal-hook/releases )
- [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vorner/signal-hook/compare/v0.1.14...v0.1.15 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-11 14:32:26 -07:00
sakridge
903a8a3196
Add retransmit packets_by_slot metrics ( #9975 )
2020-05-11 13:49:10 -07:00
Jack May
7e364d01c2
Bump solana-rbpf to v0.1.28 ( #9976 )
2020-05-11 13:34:56 -07:00
Jack May
bfe179e911
nudge
2020-05-11 09:06:05 -07:00
Jack May
af84dff9ef
nudge
2020-05-11 09:06:05 -07:00
Jack May
97e17f9b32
Programs can only sign their accounts
2020-05-11 09:06:05 -07:00
Michael Vines
b4b4d6b00d
Write non-error output to stdout ( #9960 )
...
automerge
2020-05-11 08:39:10 -07:00
dependabot-preview[bot]
1f9d0fc284
Bump dialoguer from 0.5.1 to 0.6.2 ( #9970 )
...
Bumps [dialoguer](https://github.com/mitsuhiko/dialoguer ) from 0.5.1 to 0.6.2.
- [Release notes](https://github.com/mitsuhiko/dialoguer/releases )
- [Changelog](https://github.com/mitsuhiko/dialoguer/blob/master/CHANGELOG.md )
- [Commits](https://github.com/mitsuhiko/dialoguer/compare/0.5.1...v0.6.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-11 08:21:16 -07:00
sakridge
1a47b1cd86
Retransmit and shred fetch metrics ( #9965 )
...
* Retransmit stats
* Shred fetch stats
2020-05-10 21:37:05 -07:00
dependabot-preview[bot]
9c0b80ea1b
Bump serde_yaml from 0.8.11 to 0.8.12 ( #9966 )
...
automerge
2020-05-10 18:11:23 -07:00
dependabot-preview[bot]
288c9751c1
Bump serde from 1.0.106 to 1.0.110 ( #9964 )
...
* Bump serde from 1.0.106 to 1.0.110
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.106 to 1.0.110.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.106...v1.0.110 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-10 16:24:25 -07:00
carllin
ad3c8fb812
More logging around failure ( #9967 )
...
automerge
2020-05-10 16:01:20 -07:00
Michael Vines
19722fceb3
Fixup supply_with_commitment
2020-05-10 11:50:15 -07:00
dependabot-preview[bot]
0541431ea8
Bump serde_json from 1.0.52 to 1.0.53 ( #9957 )
...
* Bump serde_json from 1.0.52 to 1.0.53
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.52 to 1.0.53.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.52...v1.0.53 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-10 11:46:29 -07:00
Tyera Eulberg
dd78184f8f
Cli: Add solana supply command; hide total-supply ( #9956 )
...
* Add cli supply command; hide total-supply
* Use print-accounts arg instead of verbose
2020-05-10 12:05:14 -06:00
Michael Vines
af6a8f5fac
Remove RpcClient code duplication ( #9952 )
2020-05-10 08:51:53 -07:00
Dan Albert
405e39fb9f
Reduce stability testcase throughput to 40k TPS ( #9959 )
...
automerge
2020-05-10 08:34:47 -07:00
Tyera Eulberg
3ee702a922
Rpc: Add getCirculatingSupply endpoint, redux ( #9953 )
...
* Add Bank.clock() helper
* Add non-circulating calculations
* Plumb getSupply rpc endpoint
* Add docs for getSupply, and remove getTotalSupply from docs
* Add pubkeys! procedural macro
* Use procedural macro in non_circulating_supply
2020-05-09 12:05:29 -06:00
Michael Vines
cb50877bbf
send_and_confirm_transaction() no longer needs a keypair ( #9950 )
2020-05-09 09:06:32 -07:00
Jack May
84885d79d5
Pull in hardened BPF virtual machine ( #9931 )
2020-05-08 12:37:04 -07:00
Greg Fitzgerald
57a9996921
Clean up --output help ( #9941 )
...
automerge
2020-05-08 12:27:56 -07:00
Ryo Onodera
00e45ec935
Maintain sysvar balances for consistent market cap. ( #9936 )
...
* Maintain sysvar balances for consistent market cap.
* Unindent
2020-05-09 02:42:32 +09:00
sakridge
f98bfda6f9
Security changes ( #9923 )
...
* Move test-only functions to test modules
* Remove sigverify disable
* Remove chacha CTR code
2020-05-08 10:00:23 -07:00
carllin
01ab1d1369
Add metrics for logging time taken in replaystage steps ( #9933 )
...
automerge
2020-05-08 03:46:29 -07:00
carllin
e970c58330
Properly handle ancestor/descendant maps ( #9932 )
...
* Account for descendants < root not existing in BankForks, purge ancestors/descendants map for consistency with BankForks and progress map
Co-authored-by: Carl <carl@solana.com >
2020-05-07 23:39:57 -07:00
dependabot-preview[bot]
c970bbea4f
Bump serde_bytes from 0.11.3 to 0.11.4 ( #9914 )
...
Bumps [serde_bytes](https://github.com/serde-rs/bytes ) from 0.11.3 to 0.11.4.
- [Release notes](https://github.com/serde-rs/bytes/releases )
- [Commits](https://github.com/serde-rs/bytes/compare/0.11.3...0.11.4 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-07 23:26:37 -07:00
Trent Nelson
f12c6c1ed1
BSD compat for 9493de4
( #9922 )
...
automerge
2020-05-07 16:38:33 -07:00
Ryo Onodera
2ac50177a6
Include account.owner into account hash ( #9917 )
...
automerge
2020-05-07 13:01:11 -07:00
dependabot-preview[bot]
3757754c89
Bump signal-hook from 0.1.13 to 0.1.14 ( #9913 )
...
Bumps [signal-hook](https://github.com/vorner/signal-hook ) from 0.1.13 to 0.1.14.
- [Release notes](https://github.com/vorner/signal-hook/releases )
- [Changelog](https://github.com/vorner/signal-hook/blob/master/CHANGELOG.md )
- [Commits](https://github.com/vorner/signal-hook/compare/v0.1.13...v0.1.14 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-05-07 08:33:58 -07:00
Tyera Eulberg
754c65c066
Refactor RPC subscriptions account handling ( #9888 )
...
* Switch subscriptions to use commitment instead of confirmations
* Add bank method to return account and last-modified slot
* Add last_modified_slot to subscription data and use to filter account subscriptions
* Update tests to non-zero last_notified_slot
* Add accounts subscriptions to test; fails at higher tx load
* Pass BankForks to RpcSubscriptions
* Use BankForks on add_account_subscription to properly initialize last_notified_slot
* Bundle subscriptions
* Check for non-equality
* Use commitment to initialize last_notified_slot; revert context.slot chage
2020-05-07 00:23:06 -06:00
VadimGrznk
f6e26f6c8c
Add using OutputFormat enum to --sign-only transactions ( #9650 )
...
* Add using OutputFormat enum to --sign-only commands
* Renaming
* Code formating
* Appease clippy
* Add returning json string to pay command for tests
* Code refactoring
* Appease clippy
* Rebase and dedupe signature prints
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-05-06 22:21:48 -06:00
Dan Albert
d08d9322d2
Limit performance testcases to 40k TPS client ( #9906 )
2020-05-06 21:36:13 -06:00
Tyera Eulberg
65a52a4145
Cli: Update OutputFormat method to return a String to restore consistency ( #9904 )
...
* Update OutputFormat method to return a String to restore consistency
* Remove process_show_account special case
2020-05-06 20:27:15 -06:00
sakridge
d5c889d6b0
Re-enable gpu sigverify ( #9870 )
...
Add sigverify fuzz and scalar test
2020-05-06 15:44:55 -07:00
carllin
445e6668c2
Fix ( #9896 )
...
Co-authored-by: Carl <carl@solana.com >
2020-05-06 11:44:49 -07:00
Michael Vines
766062b2cc
Correct method name
2020-05-06 11:27:55 -07:00
dependabot-preview[bot]
068666b0e3
Bump cbindgen from 0.14.1 to 0.14.2 ( #9900 )
...
automerge
2020-05-06 09:07:57 -07:00
Michael Vines
09ae61651a
Eliminate BankForksInfo ( #9887 )
2020-05-06 08:24:59 -07:00
dependabot-preview[bot]
e951f8d0ed
Bump libloading from 0.6.1 to 0.6.2 ( #9895 )
...
* Bump libloading from 0.6.1 to 0.6.2
Bumps [libloading](https://github.com/nagisa/rust_libloading ) from 0.6.1 to 0.6.2.
- [Release notes](https://github.com/nagisa/rust_libloading/releases )
- [Commits](https://github.com/nagisa/rust_libloading/compare/0.6.1...0.6.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-05-06 08:19:39 -07:00
Michael Vines
e078ba1dde
Display transaction fee in SOL ( #9892 )
...
automerge
2020-05-05 22:10:41 -07:00
Michael Vines
16ddd001f6
Gossip no longer pushes/pulls from nodes with a different shred version ( #9868 )
2020-05-05 20:15:19 -07:00
Michael Vines
72312ad615
Avoid holding the entire rooted path while loading bank forks ( #9885 )
2020-05-05 19:45:41 -07:00
carllin
3442f36f8a
Repair alternate versions of dead slots ( #9805 )
...
Co-authored-by: Carl <carl@solana.com >
2020-05-05 14:07:21 -07:00
Tyera Eulberg
b2672fd623
Cli: add cluster-date subcommand, and make block-time slot optional ( #9878 )
...
* Add CliBlockTime struct
* Add cli cluster-date subcommand
* Make slot param optional; also jsonify
* Make prints prettier
2020-05-05 09:42:03 -06:00
jon-chuang
16af67d5e1
Focus bench on squash and fix log errors ( #9759 )
...
* Focus bench on squash
Squash performance does not depend on adding a small number accounts. It mainly depends on total number of accounts that need to be hashed during freeze operation. New bank means a clone of accounts db, so we don't get previous errors in log.
* Fix fmt and add slot counter
2020-05-05 08:33:41 -07:00
Tyera Eulberg
627bc7e3a9
Rpc: Filter blockstore data by cluster-confirmed root ( #9873 )
...
automerge
2020-05-04 18:39:27 -07:00
Tyera Eulberg
f5b0d13f08
Rpc: add getLargestAccounts endpoint ( #9869 )
...
automerge
2020-05-04 16:46:10 -07:00
Kristofer Peterson
3aedb81d48
Avoid panic caused by converting non-positive / non-normal floating points values to duration ( #9867 )
2020-05-04 13:08:27 -07:00
Greg Fitzgerald
f8ad3aca25
Speed up setting lockups ( #9849 )
...
* De-dup sending messages
* Add --no-wait option for setting lockups
* Don't set lockups that are already set
* Extend adjacent lockups
2020-05-04 13:05:04 -06:00
Jack May
a8394317c7
Wait for at least one confirmation when uploading program data ( #9850 )
...
automerge
2020-05-02 20:11:50 -07:00
Michael Vines
ffbbdd46e8
Add clap.rs default for --commitment ( #9859 )
2020-05-02 13:06:35 -07:00
sakridge
f37f83fd12
Fuzzer test and fixes ( #9853 )
2020-05-02 08:07:52 -07:00
Michael Vines
de04563f18
Watchtower can now emit a notifiation on all non-vote transactions ( #9845 )
2020-05-01 17:48:22 -07:00
sakridge
894549f002
Put empty accounts in the accounts list on load ( #9840 )
...
Indexing into accounts array does not match account_keys otherwise.
Also enforce program accounts not at index 0
Enforce at least 1 Read-write signing fee-payer account.
2020-05-01 17:23:33 -07:00
Jack May
fc46a0d441
Reenable move lock files ( #9844 )
...
automerge
2020-05-01 17:12:51 -07:00
Jack May
6eb50450ec
Reenable move ( #9841 )
...
automerge
2020-05-01 12:51:29 -07:00
Michael Vines
79a6b4b596
Add delay to keep RPC traffic down on error
2020-05-01 10:32:46 -07:00
Tyera Eulberg
db8011f4f3
Enable multiple lockup fields to be set at once ( #9831 )
...
automerge
2020-04-30 22:17:23 -07:00
Michael Vines
8dfe0affd4
Add incinerator sysvar ( #9815 )
2020-04-30 22:04:08 -07:00
Greg Fitzgerald
450f1d2867
Add set-lockup to solana-stake-accounts ( #9827 )
...
* Add a command to set lockups or authorize a new custodian on derived stake accounts
* Thanks clippy
2020-04-30 17:56:37 -06:00
Jack May
7678af6300
Cleanup BPF helper symbols ( #9804 )
2020-04-30 11:29:11 -07:00
Greg Fitzgerald
217931479b
Bump Ledger Beta app version ( #9822 )
...
automerge
2020-04-30 11:15:09 -07:00
Leopold Schabel
e5bad7594f
Clarify Ledger security implications ( #9820 )
...
* Clarify Ledger security implications
* Remove trailing whitespace
2020-04-30 12:14:51 -06:00
Jack May
de9d8cd849
Rename BPF helper to syscall ( #9819 )
...
automerge
2020-04-30 01:43:11 -07:00
Tyera Eulberg
6deaf649ef
Add commitment Root variant, and add fleshed out --commitment arg to Cli ( #9806 )
...
automerge
2020-04-29 21:55:33 -07:00
Ryo Onodera
a91236012d
Pass around --max-genesis-archive-unpacked-size ( #9161 )
...
automerge
2020-04-29 18:53:34 -07:00
anatoly yakovenko
a0514eb2ae
thiserror, docs, remove general Failure case ( #9741 )
...
automerge
2020-04-29 18:12:51 -07:00
Michael Vines
230df0ec0c
Upgrade to Rust 1.43.0 ( #9754 )
2020-04-29 18:02:05 -07:00
Tyera Eulberg
2f08b12753
Rpc Client: Prevent error out on get_num_blocks_since_signature_confirmation ( #9792 )
...
automerge
2020-04-29 13:12:38 -07:00
Tyera Eulberg
efb4988d10
Rpc: remove unwraps ( #9793 )
...
automerge
2020-04-29 12:06:09 -07:00
Michael Vines
6ed29b3653
Don't divide by zero
2020-04-29 11:04:52 -07:00
Jack May
1018807db9
Bump Rust-BPF version to be interoperable with latest Rust ( #9783 )
...
automerge
2020-04-28 23:47:59 -07:00
Michael Vines
0954ea19e8
catchup now estimates the time remaining ( #9782 )
...
automerge
2020-04-28 22:32:12 -07:00
Jack May
b26c07b788
Fix BPF tool caching ( #9781 )
...
automerge
2020-04-28 21:06:04 -07:00
Stephen Akridge
eb24f3df84
Update dalek version
2020-04-28 21:02:47 -06:00
Trent Nelson
3d40ca86b0
Disable Move/Libra components
2020-04-28 21:02:47 -06:00
Jack May
d836dfff14
Fix bpf unit test linkage ( #9780 )
...
automerge
2020-04-28 19:41:08 -07:00
Jack May
a4fe11fad2
Remove old logging enabler artifacts ( #9777 )
...
automerge
2020-04-28 15:56:51 -07:00
Tyera Eulberg
9d91cca73c
Remove commented code
2020-04-28 15:47:41 -06:00
Tyera Eulberg
0a16d09e1f
typo ( #9776 )
...
automerge
2020-04-28 14:40:10 -07:00
Jack May
068f12fd6f
Add Cross-program invocations ( #9582 )
2020-04-28 14:33:56 -07:00
Michael Vines
063f616a19
Don't --use-move
2020-04-28 12:47:31 -07:00
Michael Vines
87827b2330
Reorder steps by relative priority for when there aren't enough agents
2020-04-28 12:44:55 -07:00
Michael Vines
f5aaf7ff28
Disable move more
2020-04-28 12:39:36 -07:00
Michael Vines
6e42989309
Report duration of last alarm in the All Clear message ( #9766 )
...
automerge
2020-04-28 10:48:16 -07:00
Michael Vines
d67ad70443
Revert "Bump console from 0.10.1 to 0.11.2 ( #9763 )"
...
This reverts commit 2de999fb61
.
2020-04-28 10:43:18 -07:00
Tyera Eulberg
655e3bc418
Rpc: Use cluster largest_confirmed_root as commitment max ( #9750 )
...
automerge
2020-04-28 10:20:43 -07:00
dependabot-preview[bot]
659e87703b
Bump generic-array from 0.13.2 to 0.14.1 ( #9446 )
...
* Bump generic-array from 0.13.2 to 0.14.1
Bumps [generic-array](https://github.com/fizyk20/generic-array ) from 0.13.2 to 0.14.1.
- [Release notes](https://github.com/fizyk20/generic-array/releases )
- [Changelog](https://github.com/fizyk20/generic-array/blob/master/CHANGELOG.md )
- [Commits](https://github.com/fizyk20/generic-array/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
* Optional generic-array
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
Co-authored-by: Jack May <jack@solana.com >
2020-04-28 09:43:48 -07:00
dependabot-preview[bot]
2de999fb61
Bump console from 0.10.1 to 0.11.2 ( #9763 )
...
Bumps [console](https://github.com/mitsuhiko/console ) from 0.10.1 to 0.11.2.
- [Release notes](https://github.com/mitsuhiko/console/releases )
- [Commits](https://github.com/mitsuhiko/console/compare/0.10.1...0.11.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-04-28 09:36:07 -07:00
Tyera Eulberg
a12428a5b8
Use Blockstore lowest_slot to start root iterator ( #9738 )
2020-04-28 10:22:10 -06:00
Ryo Onodera
3d8fc8a4a8
Enable cargo audit for all Cargo.lock ( #9751 )
...
* Enable cargo audit for all Cargo.lock
* Update http from 0.1.19 to 0.1.21
* Update bumpalo from 3.2.0 to 3.2.1
2020-04-28 17:43:47 +09:00
Ryo Onodera
ef7196cec2
Relax update preciseness ( #9758 )
...
automerge
2020-04-28 01:40:25 -07:00
Michael Vines
a61904b2dc
Set HOME correctly ( #9757 )
...
automerge
2020-04-28 01:18:52 -07:00
sakridge
aac580686f
fix test compilation from add_static_program change ( #9755 )
2020-04-27 23:37:08 -07:00
Jack May
efad193180
Make default programs static ( #9717 )
2020-04-27 21:05:12 -07:00
anatoly yakovenko
193dbb1794
sanitize lowest slots ( #9747 )
2020-04-27 20:22:30 -07:00
Michael Vines
c11abf88b7
Clean up use
to keep rust 1.43.0 from complaining ( #9740 )
2020-04-27 16:54:11 -07:00
Trent Nelson
2f705b5b55
Docs: Fix linkcheck errors ( #9743 )
...
automerge
2020-04-27 14:51:53 -07:00
Michael Vines
839ff51b9a
Fix build
2020-04-27 12:26:23 -07:00
anatoly yakovenko
8ef097bf6f
Input values are not sanitized after they are deserialized, making it far too easy for Leo to earn SOL ( #9706 )
...
* sanitize gossip protocol messages
* sanitize transactions
* crds protocol sanitize
2020-04-27 11:06:00 -07:00
dependabot-preview[bot]
c372a39dd3
Bump dialoguer from 0.5.0 to 0.5.1 ( #9725 )
...
Bumps [dialoguer](https://github.com/mitsuhiko/dialoguer ) from 0.5.0 to 0.5.1.
- [Release notes](https://github.com/mitsuhiko/dialoguer/releases )
- [Commits](https://github.com/mitsuhiko/dialoguer/compare/0.5.0...0.5.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-04-27 09:57:13 -07:00
dependabot-preview[bot]
c5a7df9221
Bump console from 0.10.0 to 0.10.1 ( #9726 )
...
Bumps [console](https://github.com/mitsuhiko/console ) from 0.10.0 to 0.10.1.
- [Release notes](https://github.com/mitsuhiko/console/releases )
- [Commits](https://github.com/mitsuhiko/console/compare/0.10.0...0.10.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-04-27 09:16:24 -06:00
Justin Starry
f71a23a72a
Fix broken doc link to anatomy of transaction ( #9728 )
...
automerge
2020-04-27 00:58:27 -07:00
Ryo Onodera
41eba7d1c7
Strictly match against package names ( #9727 )
...
automerge
2020-04-26 20:56:00 -07:00
Ryo Onodera
9918539229
Introduce type alias Ancestors ( #9699 )
...
* Introduce type alias AncestorList
* Rename AncestorList => Ancestors
2020-04-27 11:07:03 +09:00
sakridge
e907c0e650
Filter program ids to store ( #9721 )
...
automerge
2020-04-26 00:11:37 -07:00
Jack May
d3e3f51330
Ignore log tests due to concurrency conflicts ( #9719 )
2020-04-25 22:38:59 -07:00
Michael Vines
c9d6c39c31
Fix up test
2020-04-25 09:33:44 -07:00
Ryo Onodera
05acd4b29f
Cargo check all targets ( #9718 )
...
automerge
2020-04-25 05:14:37 -07:00
Tyera Eulberg
a7f33b5014
Cache banks in BankForks until optional largest_confirmed_root ( #9678 )
...
automerge
2020-04-24 15:49:57 -07:00
dependabot-preview[bot]
d7f37a703e
Bump jsonrpc-derive from 14.0.5 to 14.1.0 ( #9702 )
...
Bumps [jsonrpc-derive](https://github.com/paritytech/jsonrpc ) from 14.0.5 to 14.1.0.
- [Release notes](https://github.com/paritytech/jsonrpc/releases )
- [Commits](https://github.com/paritytech/jsonrpc/compare/jsonrpc-derive-v14.0.5...v14.1.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-04-24 15:24:18 -07:00
dependabot-preview[bot]
c92f95e0b8
Bump jsonrpc-ws-server from 14.0.6 to 14.1.0 ( #9701 )
...
Bumps [jsonrpc-ws-server](https://github.com/paritytech/jsonrpc ) from 14.0.6 to 14.1.0.
- [Release notes](https://github.com/paritytech/jsonrpc/releases )
- [Commits](https://github.com/paritytech/jsonrpc/compare/ipc-14.0.6...v14.1.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-04-24 15:24:07 -07:00
sakridge
fa20963b93
Revert shred fs ( #9712 )
...
* Revert "Untar is called for shred archives that do not exist. (#9565 )"
This reverts commit 729cb5eec6
.
* Revert "Dont insert shred payload into rocksdb (#9366 )"
This reverts commit 5ed39de8c5
.
2020-04-24 15:04:23 -07:00
Michael Vines
50f1ec0374
Add support for log rotation, sending SIGUSR1 will cause the log file to be re-opened ( #9713 )
2020-04-24 14:26:53 -07:00
Greg Fitzgerald
76b1c2baf0
One less alloc per transaction ( #9705 )
...
* One less alloc per transaction
* Fix benches
* Fix compiler warnings in bench build
* Fix move build
* Fix bench
2020-04-24 13:03:46 -06:00
Leopold Schabel
767a0f9384
Fix comment in serve_repair ( #9703 )
...
automerge
2020-04-24 10:00:23 -07:00
Ryo Onodera
d44e0b7cd8
Support ad-hoc genesis args in run.sh ( #9697 )
...
automerge
2020-04-23 22:48:53 -07:00
Michael Vines
3670d3fd7a
Add missing slash
2020-04-23 21:37:25 -07:00
Michael Vines
cb2efd530f
Update testnet expected shred version
2020-04-23 20:36:52 -07:00
sakridge
79829c98db
Fix vote listener passing bad transactions ( #9694 )
2020-04-23 17:04:09 -07:00
dependabot-preview[bot]
d2cef8ed9b
Bump num_cpus from 1.12.0 to 1.13.0 ( #9682 )
...
* Bump num_cpus from 1.12.0 to 1.13.0
Bumps [num_cpus](https://github.com/seanmonstar/num_cpus ) from 1.12.0 to 1.13.0.
- [Release notes](https://github.com/seanmonstar/num_cpus/releases )
- [Changelog](https://github.com/seanmonstar/num_cpus/blob/master/CHANGELOG.md )
- [Commits](https://github.com/seanmonstar/num_cpus/compare/v1.12.0...v1.13.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* [auto-commit] Update all Cargo lock files
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: dependabot-buildkite <dependabot-buildkite@noreply.solana.com >
2020-04-23 13:08:06 -07:00
dependabot-preview[bot]
17a8b0f783
Bump jsonrpc-core-client from 14.0.5 to 14.1.0 ( #9683 )
...
Bumps [jsonrpc-core-client](https://github.com/paritytech/jsonrpc ) from 14.0.5 to 14.1.0.
- [Release notes](https://github.com/paritytech/jsonrpc/releases )
- [Commits](https://github.com/paritytech/jsonrpc/compare/jsonrpc-core-client-v14.0.5...v14.1.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-04-23 13:07:50 -07:00
Michael Vines
3acfe42622
Exit cleanly on panic! so the process don't limp along in a half-dead state ( #9690 )
2020-04-23 12:05:13 -07:00
Michael Vines
d1cbccd9ba
solana-dos can now DoS gossip nodes ( #9652 )
...
automerge
2020-04-23 11:46:12 -07:00
sakridge
504160b11f
Update to rocksdb 0.14 and set max wal size ( #9668 )
2020-04-23 08:38:09 -07:00
Ryo Onodera
b21fd27360
Sync all Cargo.locks with num_cpus:1.12.0 ( #9685 )
...
automerge
2020-04-23 05:13:46 -07:00
Michael Vines
8df79a3559
Remove stray 'v' ( #9679 )
2020-04-22 23:26:37 -07:00
sakridge
ecb343c23b
reduce errors ( #9669 )
...
Co-authored-by: Anatoly Yakovenko <anatoly@solana.com >
2020-04-22 19:46:06 -07:00
Greg Fitzgerald
7e48e5859d
Delete dead code ( #9670 )
...
automerge
2020-04-22 18:17:23 -07:00
Dan Albert
57a25de910
Remove validator-info publish from net scripts ( #9673 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
2020-04-22 18:04:22 -06:00
Dan Albert
24354ccd6a
Clean up wallet URL paths ( #9667 )
...
automerge
2020-04-22 16:48:21 -07:00
Greg Fitzgerald
71f7a7243b
Add custodian option to withdraw-stake command ( #9662 )
...
automerge
2020-04-22 15:00:18 -07:00
Jack May
17e7667da4
Serialize test ( #9655 )
2020-04-22 14:53:06 -07:00
Tyera Eulberg
5d2f488004
Add getLowestNonpurgedBlock rpc; use blockstore api in getConfirmedBlocks ( #9656 )
...
automerge
2020-04-22 13:33:06 -07:00
Dan Albert
ab4bdd59db
Extend snapshot interval in multinode demo ( #9657 )
...
automerge
2020-04-22 12:25:15 -07:00
Tyera Eulberg
d5abff82e0
Add largest_confirmed_root to BlockCommitmentCache ( #9640 )
...
* Add largest_confirmed_root to BlockCommitmentCache
* clippy
* Add blockstore to BlockCommitmentCache to check root
* Add rooted_stake helper fn and test
* Nodes that are behind should correctly id confirmed roots
* Simplify rooted_stake collector
2020-04-22 12:22:09 -06:00
Dan Albert
611d2fa75d
Add single region TPS report testcases ( #9609 )
...
automerge
2020-04-22 11:05:05 -07:00
Jack May
89b30b4853
Ignore test_helper_sol_log due to solana_logger concurency issue ( #9654 )
2020-04-22 10:03:41 -07:00
Michael Vines
9b71573965
Align ci/publish-docs and ci/test-checks doc builds ( #9653 )
...
* Align ci/publish-docs and ci/test-checks doc builds
* Fix links
2020-04-22 09:51:01 -07:00
Greg Fitzgerald
77c3a1f372
Don't attempt to rebase or move empty accounts ( #9651 )
...
automerge
2020-04-22 09:45:44 -07:00
dependabot-preview[bot]
08e73e5366
Bump jsonrpc-http-server from 14.0.6 to 14.1.0 ( #9628 )
...
automerge
2020-04-22 09:21:05 -07:00
sakridge
2e8349196e
Custom epochslots debug ( #9647 )
2020-04-22 08:55:08 -07:00
dependabot-preview[bot]
2a935ec15f
Bump jsonrpc-pubsub from 14.0.6 to 14.1.0 ( #9649 )
...
Bumps [jsonrpc-pubsub](https://github.com/paritytech/jsonrpc ) from 14.0.6 to 14.1.0.
- [Release notes](https://github.com/paritytech/jsonrpc/releases )
- [Commits](https://github.com/paritytech/jsonrpc/compare/ipc-14.0.6...v14.1.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-04-22 07:49:35 -07:00
Ryo Onodera
7bf1720a76
Handle no hit correctly... ( #9648 )
...
automerge
2020-04-22 01:23:33 -07:00
Greg Fitzgerald
ba58589656
Relax setting withdraw authority during lockup ( #9644 )
...
automerge
2020-04-21 21:05:49 -07:00
Michael Vines
5b8d963ee2
Clean up TdS/validator docs ( #9638 )
2020-04-21 16:59:09 -07:00
Michael Vines
45ff1f2379
dos: Tidy up clap argument handling, and adapt to newer solana-dos arguments ( #9633 )
...
* Tidy up clap argument handling
* Adapt to newer solana-dos arguments
2020-04-21 16:58:30 -07:00
Greg Fitzgerald
0d24e758b2
Add docs for installing the beta Ledger app ( #9641 )
2020-04-21 17:36:37 -06:00
Greg Fitzgerald
cbc7b3b0b7
Cleanup CLI help message ( #9632 )
...
automerge
2020-04-21 16:09:34 -07:00
carllin
111a86f3ec
Added no superminority and isolated node test cases ( #9306 )
...
Co-authored-by: Carl <carl@solana.com >
2020-04-21 15:35:48 -07:00
carllin
bab3502260
Push down cluster_info lock ( #9594 )
...
* Push down cluster_info lock
* Rework budget decrement
Co-authored-by: Carl <carl@solana.com >
2020-04-21 12:54:45 -07:00
Michael Vines
ad186b8652
Flag test_tvu_exit as serial to hopefully reduce CI flakiness ( #9509 )
2020-04-21 12:54:16 -07:00
Justin Starry
3023691487
RPC: Allow single slot address history queries ( #9630 )
2020-04-22 01:08:06 +08:00
Justin Starry
92afe9020f
Document potential null responses in RPC API docs ( #9629 )
2020-04-22 01:07:57 +08:00
dependabot-buildkite
7d6cdf83dc
[auto-commit] Update all Cargo lock files
2020-04-21 08:07:00 -07:00
dependabot-preview[bot]
64e5684d45
Bump bs58 from 0.3.0 to 0.3.1
...
Bumps [bs58](https://github.com/mycorrhiza/bs58-rs ) from 0.3.0 to 0.3.1.
- [Release notes](https://github.com/mycorrhiza/bs58-rs/releases )
- [Commits](https://github.com/mycorrhiza/bs58-rs/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-21 08:07:00 -07:00
Jack May
4d97d3bdb1
Cleanup move ( #9622 )
...
automerge
2020-04-20 23:37:54 -07:00
Tyera Eulberg
18cba86f77
Wait for supermajority of cluster to have rooted a transaction to consider it finalized ( #9618 )
...
* Add rooted stake to BlockCommitment
* Use rooted stake to include cluster check
2020-04-20 23:25:49 -06:00
Michael Vines
914b022663
cli: Add transaction-history ( #9614 )
...
automerge
2020-04-20 22:01:09 -07:00
Jack May
6e908a1be8
Nit: More informative error message ( #9616 )
2020-04-20 21:35:22 -07:00
Ryo Onodera
5402434218
Explicitly specificy old version for cargo update ( #9621 )
2020-04-21 12:44:04 +09:00
Ryo Onodera
6793c10860
Update Cargo.lock files ( #9619 )
2020-04-21 10:49:06 +09:00
Ryo Onodera
c856d8bdbd
Backpropagate Cargo.lock updates to all lock files ( #9180 )
...
* Experiment to backpropagate Cargo.lock updates to all lock files
* Move most of dependabot-specific code to its own file
* Various cleanups
* Fine tune..
* Clean up shells and stop obscure API...
2020-04-21 10:07:29 +09:00
Greg Fitzgerald
a6ad660e5e
Merge stake::withdraw instructions ( #9617 )
2020-04-20 18:16:50 -06:00
Jack May
b1a0abc7a6
Bump libloading to v0.6.1 ( #9615 )
...
automerge
2020-04-20 16:46:06 -07:00
Dan Albert
3fbe7f0bb3
Fixup scripts to set up a new CI node ( #9348 )
...
* Clean up node setup scripts for new CI boxes
* Move files under ci directory
* Set CUDA env var to setup cuda drivers
* Fixup and add README
* shellcheck
* Apply review feedback, rename dir and setup files
Co-authored-by: publish-docs.sh <maintainers@solana.com >
2020-04-20 17:43:13 -06:00
Tyera Eulberg
41fec5bd5b
Handle outdated and current ledger-solana-apps ( #9605 )
...
* Add version check, handling for outdated+current ledger-solana-apps
* Add derivation-path prefix
2020-04-20 14:57:37 -06:00
Michael Vines
44cced3ffc
Add decode-transaction
2020-04-20 12:14:30 -07:00
Dan Albert
498d025bd3
Update solana-user-authorized_keys.sh
2020-04-20 09:52:33 -06:00
Anatoly Yakovenko
8a69ea971f
test
2020-04-20 08:44:39 -07:00
dependabot-preview[bot]
b1ca74ed30
Bump regex from 1.3.6 to 1.3.7
...
Bumps [regex](https://github.com/rust-lang/regex ) from 1.3.6 to 1.3.7.
- [Release notes](https://github.com/rust-lang/regex/releases )
- [Changelog](https://github.com/rust-lang/regex/blob/master/CHANGELOG.md )
- [Commits](https://github.com/rust-lang/regex/compare/1.3.6...regex-1.3.7 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-20 08:02:22 -07:00
Dan Albert
6d941c82fd
Update solana-user-authorized_keys.sh
2020-04-20 07:55:16 -06:00
anatoly yakovenko
77fb4230d6
Calculate distance between u64 without overflow ( #9592 )
...
* fix overflow
* fixed num_live_peers overflow
2020-04-19 23:05:26 -07:00
sakridge
a5419fe79e
Error for invalid shred. ( #9588 )
2020-04-19 21:15:09 -07:00
carllin
1607891b29
log proper slot ( #9576 )
...
Co-authored-by: Carl <carl@solana.com >
2020-04-19 14:24:45 -07:00
Michael Vines
75b25e33f6
Adjust dashboard time range
2020-04-19 09:24:42 -07:00
Jack May
d08517db8c
Nit picks ( #9580 )
2020-04-18 22:39:08 -07:00
sakridge
65a9658b13
Budget for gossip traffic ( #9550 )
2020-04-18 22:11:17 -07:00
sakridge
3205361163
Fix local-cluster test - archiver should wait for itself + 1 validator ( #9577 )
2020-04-18 20:00:02 -07:00
Jack May
58887c591b
Add and update tests ( #9566 )
2020-04-18 17:04:13 -07:00
anatoly yakovenko
657fbfbefa
Proposal for deterministic program generated Pubkey's that can be used only by programs to create signatures in process_instruction. ( #8155 )
...
* program keys
* cleanup
* update
* missing SUMMARY
* review comments
* fixed @jackmay comment
* update to take a user base address
* rename
2020-04-18 16:51:20 -07:00
Jack May
36bf7ad694
Update link
2020-04-18 15:11:55 -07:00
Tyera Eulberg
679e7863cb
Tame wallet manager better ( #9567 )
...
automerge
2020-04-18 11:54:21 -07:00
Michael Vines
a7aa7e172b
validator: Consider the activated stake of this node to be online again ( #9573 )
...
automerge
2020-04-18 10:16:19 -07:00
anatoly yakovenko
729cb5eec6
Untar is called for shred archives that do not exist. ( #9565 )
...
automerge
2020-04-18 08:34:55 -07:00
Tyera Eulberg
addbdcb660
Remove wait_for_majority
2020-04-18 08:23:00 -07:00
Michael Vines
f142451a33
Reduce metrics log output
2020-04-17 23:38:14 -07:00
Michael Vines
124287a0ea
Add ramp-tps
2020-04-17 22:29:35 -07:00
Michael Vines
9da366c193
Remove old stuff
2020-04-17 20:38:29 -07:00
dependabot-preview[bot]
cb0a1a94a7
Bump jsonrpc-core from 14.0.5 to 14.1.0
...
Bumps [jsonrpc-core](https://github.com/paritytech/jsonrpc ) from 14.0.5 to 14.1.0.
- [Release notes](https://github.com/paritytech/jsonrpc/releases )
- [Commits](https://github.com/paritytech/jsonrpc/commits )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-17 20:06:15 -07:00
Michael Vines
dbaebe101c
Clean up metrics dashboard
2020-04-17 18:08:59 -07:00
Michael Vines
8509dcb8a0
Report offline/wrong-shred nodes while waiting for a super majority in gossip
2020-04-17 13:32:19 -07:00
Michael Vines
7b5cdf6adf
Reduce ReceiveUpdates log spam
2020-04-17 13:32:19 -07:00
Michael Vines
7207a91aa5
confirm --verbose now displays failed transactions
2020-04-17 13:17:38 -07:00
Michael Vines
55ed52a71d
Increase the number of JSON RPC service threads ( #9551 )
...
automerge
2020-04-17 12:37:33 -07:00
Vadim Grozinok
cd4927053e
Format code
2020-04-17 11:39:03 -07:00
Vadim Grozinok
982e6c4916
Add after_help to watchtower --help command
2020-04-17 11:39:03 -07:00
Michael Vines
b58338b066
Make rpc_subscriptions.rs tests serial ( #9556 )
...
automerge
2020-04-17 10:48:39 -07:00
Tyera Eulberg
a9c38fb0df
Consider config in check_for_usb ( #9555 )
2020-04-17 11:37:13 -06:00
Ryo Onodera
9bba27a3aa
Update outdated lock files... ( #9554 )
2020-04-17 23:57:25 +09:00
sakridge
e655cba5bd
Make rpc tests serial ( #9537 )
2020-04-16 22:02:55 -07:00
carllin
bcfd379f32
Simplify EpochSlots update ( #9545 )
...
Co-authored-by: Carl <carl@solana.com >
2020-04-16 19:32:19 -07:00
Michael Vines
47ae57610a
Only build x86_64-unknown-linux-gnu on docs.rs
2020-04-16 19:06:17 -07:00
anatoly yakovenko
5ed39de8c5
Dont insert shred payload into rocksdb ( #9366 )
...
automerge
2020-04-16 18:20:55 -07:00
sakridge
66abe45ea1
Decouple accounts hash calculation from snapshot hash ( #9507 )
2020-04-16 15:12:20 -07:00
Michael Vines
425b4fe6dd
Don't upload tarballs to buildkite to speed up build
2020-04-16 13:54:36 -07:00
Stephen Akridge
93669ab1fc
Write wallet key to explicit file
2020-04-16 13:34:19 -07:00
Michael Vines
16b2d41dd6
Improve error message on solana-keygen new
filesystem permission errors
2020-04-16 10:28:49 -07:00
Stephen Akridge
30b3862770
Don't unwrap on session new
2020-04-16 08:25:45 -07:00
Michael Vines
7e7cbec8a1
Passing -v/--verbose to solana confirm
now displays the full transaction
2020-04-16 08:19:30 -07:00
Michael Vines
4ac15e68cf
Default to RUST_BACKTRACE=1 for more informative validator logs
2020-04-15 22:37:22 -07:00
Michael Vines
a7ed33b552
Pacify shellcheck
2020-04-15 17:46:19 -07:00
Michael Vines
9cc7265b05
Always run shellcheck
2020-04-15 17:46:19 -07:00
Michael Vines
d567799d43
Use $rust_stable
2020-04-15 17:15:14 -07:00
Tyera Eulberg
530c542002
Rpc: Speed up getBlockTime ( #9510 )
...
* Add get-block-time metrics
* Add datapoints to blockstore rpc apis
* Tune timestamp_slot_range
* Refactor get_timestamp_slots
* Cargo.lock
2020-04-15 18:09:14 -06:00
carllin
7aa4d401f7
Fix broadcast metrics ( #9461 )
...
* Rework broadcast metrics to support multiple threads
* Update dashboards
Co-authored-by: Carl <carl@solana.com >
2020-04-15 15:22:16 -07:00
sakridge
a8b8c2f438
Move slow compaction test to integration ( #9506 )
2020-04-15 11:54:03 -07:00
Jack May
241a05fc52
Add native loader entry points ( #9486 )
2020-04-15 09:41:29 -07:00
Michael Vines
40737e9efa
Add health check URI
2020-04-15 09:06:24 -07:00
sakridge
217828a849
Reduce accounts_db prints ( #9469 )
2020-04-15 09:05:54 -07:00
sakridge
69f1e487b3
Reduce cluster-info metrics. ( #9465 )
2020-04-14 21:21:58 -07:00
sakridge
2b2b2cac1f
limit test jobs to 16 to prevent OOM ( #9500 )
2020-04-14 16:40:13 -07:00
sakridge
ee72714c08
Fix race in multi_bind_in_range ( #9493 )
2020-04-14 13:34:41 -07:00
Michael Vines
83a96c557d
Ensure --dynamic-port-range is wide enough
2020-04-14 12:21:05 -07:00
Michael Vines
892e425d87
Improve sys-tuner error message
2020-04-14 12:21:05 -07:00
Tyera Eulberg
5298e3872c
Cli: enable json output ( #9478 )
...
automerge
2020-04-14 12:10:25 -07:00
Ryo Onodera
c77ed82caa
Use same max_age regardless of leader/not-leader ( #9423 )
...
automerge
2020-04-14 00:34:41 -07:00
Ryo Onodera
2d0224b64e
Switch reed-solomon-erasure from vendored to upstream ( #9483 )
2020-04-14 14:33:21 +09:00
Tyera Eulberg
68b099c277
Print signature as part of progress spinner ( #9484 )
...
automerge
2020-04-13 22:04:20 -07:00
Michael Vines
283f3ff620
Fail coverage faster in CI
2020-04-13 21:10:09 -07:00
carllin
9a95257c40
Optimistic Confirmation Proposal ( #9157 )
...
* Add summary of one block conf
Co-authored-by: Carl <carl@solana.com >
2020-04-13 19:50:05 -07:00
Michael Vines
bcfadd6085
Assume json_rpc_url can be upgrade to a websocket if no port is supplied
2020-04-13 19:42:13 -07:00
Michael Vines
d4ea1ec6ad
Unfold coverage test failures
2020-04-13 18:07:06 -07:00
dependabot-preview[bot]
a0f0e199b7
Bump libc from 0.2.68 to 0.2.69
...
Bumps [libc](https://github.com/rust-lang/libc ) from 0.2.68 to 0.2.69.
- [Release notes](https://github.com/rust-lang/libc/releases )
- [Commits](https://github.com/rust-lang/libc/compare/0.2.68...0.2.69 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-13 17:30:02 -07:00
Michael Vines
5a0c2a0c1d
Rename UpdateNode to UpdateValidatorIdentity
2020-04-13 17:25:39 -07:00
Michael Vines
ce027da236
Reorder CI jobs to allow for more concurrent PRs
2020-04-13 12:57:10 -07:00
Michael Vines
37b048effb
Improve address in use error message for RPC pubsub
2020-04-13 12:13:37 -07:00
Dan Albert
92a5a51632
Update buildkite-tests.yml
2020-04-13 10:58:29 -07:00
dependabot-preview[bot]
230f014b9e
Bump thiserror from 1.0.14 to 1.0.15
...
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 1.0.14 to 1.0.15.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.14...1.0.15 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-13 09:13:04 -07:00
Michael Vines
3f33f4d3a9
Sort the output of solana validators
by active stake ( #9459 )
...
automerge
2020-04-12 17:39:02 -07:00
dependabot-preview[bot]
47fc0a5cfa
Bump parking_lot from 0.10.0 to 0.10.2
...
Bumps [parking_lot](https://github.com/Amanieu/parking_lot ) from 0.10.0 to 0.10.2.
- [Release notes](https://github.com/Amanieu/parking_lot/releases )
- [Changelog](https://github.com/Amanieu/parking_lot/blob/master/CHANGELOG.md )
- [Commits](https://github.com/Amanieu/parking_lot/compare/0.10.0...0.10.2 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-12 12:42:38 -07:00
Michael Vines
c86b0d8a85
Remove "Credits Observed:" field from solana stake-account
output
2020-04-12 12:42:18 -07:00
Michael Vines
8cda974552
Fix flaky new_archiver_external_ip_test ( #9457 )
...
automerge
2020-04-12 11:49:34 -07:00
Michael Vines
3f1399cb0d
accounts subcommand now prints account balances in SOL instead of lamports
2020-04-12 10:09:59 -07:00
sakridge
99655206c8
Calculate account refs fix ( #9447 )
2020-04-11 12:52:10 -07:00
carllin
3037eb8d4f
Remove slot field, add test ( #9444 )
...
Co-authored-by: Carl <carl@solana.com >
2020-04-10 23:52:37 -07:00
Greg Fitzgerald
31ebdbc77f
Don't subject authorizing a new stake authority to lockup ( #9434 )
2020-04-10 17:21:24 -06:00
Jack May
6e1ce5ab6c
Safer cargo command ( #9437 )
2020-04-10 15:44:24 -07:00
carllin
aa8dfac313
Simplify vote simulation ( #9435 )
...
Co-authored-by: Carl <carl@solana.com >
2020-04-10 15:16:12 -07:00
Dan Albert
c6da2ab0de
Fix automation stake parser ( #9403 )
...
Co-authored-by: publish-docs.sh <maintainers@solana.com >
2020-04-10 15:42:38 -06:00
dependabot-preview[bot]
f0291dc5d3
Bump users from 0.9.1 to 0.10.0 ( #9343 )
...
automerge
2020-04-10 12:47:21 -07:00
dependabot-preview[bot]
994f8c325a
Bump cbindgen from 0.14.0 to 0.14.1
...
Bumps [cbindgen](https://github.com/eqrion/cbindgen ) from 0.14.0 to 0.14.1.
- [Release notes](https://github.com/eqrion/cbindgen/releases )
- [Changelog](https://github.com/eqrion/cbindgen/blob/master/CHANGES )
- [Commits](https://github.com/eqrion/cbindgen/compare/v0.14.0...v0.14.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-10 11:54:12 -07:00
sakridge
ae5a6419d4
ReceiveUpdates spams the log, adjust the threshold higher ( #9429 )
2020-04-10 10:21:46 -07:00
Michael Vines
85feca305b
Avoid port conflict in new_with_external_ip_test_gossip
2020-04-09 20:27:54 -07:00
Michael Vines
7b71a331c6
clippy
2020-04-09 20:27:54 -07:00
Michael Vines
032127b591
Search for ports sequentially instead of at random for more predictable port selection
2020-04-09 20:27:54 -07:00
Tyera Eulberg
91159ea8e3
Rpc: Add getConfirmedSignaturesForAddress ( #9407 )
...
automerge
2020-04-09 20:21:31 -07:00
Michael Vines
d5a9ee97f2
Add --allow-dead-slots argument to slot
/print
/json
commands ( #9408 )
...
automerge
2020-04-09 20:10:51 -07:00
sakridge
900933bbcc
Reduce rpc test code ( #9413 )
...
automerge
2020-04-09 18:05:56 -07:00
Michael Vines
aeddd8c95a
Use consistent vote account filename ( #9414 )
...
automerge
2020-04-09 17:53:56 -07:00
sakridge
be77bdef12
Allow lower shred count ( #9410 )
2020-04-09 16:36:44 -07:00
Michael Vines
f3afe5c99c
Remove dead code ( #9404 )
...
automerge
2020-04-09 13:09:59 -07:00
Michael Vines
aab9d9229c
Cargo.lock
2020-04-09 12:28:59 -07:00
Raj Gokal
a714b8052d
Update README.md
2020-04-09 11:06:09 -07:00
Raj Gokal
e873c93be3
Update README.md
2020-04-09 10:58:42 -07:00
Raj Gokal
cb5c337540
Update README.md
2020-04-09 10:56:17 -07:00
Raj Gokal
4d14372d5e
Update README.md
2020-04-09 10:56:01 -07:00
Raj Gokal
4b8d1abb5d
Update README.md
2020-04-09 10:55:00 -07:00
Raj Gokal
d63ada489a
Update README.md
2020-04-09 10:51:16 -07:00
Dan Albert
d4e284b7c5
Remove Trust Wallet Beta install instructions ( #9396 )
...
automerge
2020-04-09 08:48:07 -07:00
carllin
21cb56d808
Fix partition setup ( #9386 )
...
automerge
2020-04-09 01:57:18 -07:00
Tyera Eulberg
e1aa247548
Rpc: Add getConfirmedTransaction ( #9381 )
...
* Add blockstore method to return a complete transaction by signature
* Plumb getConfirmedTransaction rpc
* Add doc
2020-04-09 00:57:30 -06:00
Tyera Eulberg
638108e9d5
Add --no-wait arg to transfer ( #9388 )
...
automerge
2020-04-08 22:46:19 -07:00
Tyera Eulberg
f655b3f0fd
Fix lowest_cleanup_slot check in Blockstore ( #9382 )
...
automerge
2020-04-08 18:47:16 -07:00
Michael Vines
6a2be8b0ca
Moar vm.max_map_count
2020-04-08 18:14:27 -07:00
Jack May
ad0482be73
Revert "Add native loader entry points ( #9275 )" Breaks genesis_config abi ( #9377 )
...
This reverts commit ed86d8d1fc
.
2020-04-08 14:36:18 -07:00
carllin
4522e85ac4
Add Metrics/Dashboards tracking block production ( #9342 )
...
* Add metric tracking blocks/dropped blocks
Co-authored-by: Carl <carl@solana.com >
2020-04-08 14:35:24 -07:00
Tyera Eulberg
36e73cada4
Add blockstore address-to-signature index ( #9367 )
...
automerge
2020-04-08 12:50:39 -07:00
Michael Vines
8e5ac1338f
Update baseline version
2020-04-08 12:14:18 -07:00
Ryo Onodera
cb6cf189b4
Improve ledger-tool/accounts for easier debuging ( #9370 )
...
automerge
2020-04-08 10:25:46 -07:00
sakridge
8ed05c27f2
Improve ledger-tool help ( #9365 )
2020-04-07 19:21:31 -07:00
Michael Vines
9883ca8549
Add 1 SOL grace, to allow for a complaint system account to fund a reasonable number of transactions. ( #9359 )
...
automerge
2020-04-07 13:43:43 -07:00
Michael Vines
dc91698b3a
Cache solana-perf.tgz to speed up CI ( #9360 )
...
automerge
2020-04-07 13:13:45 -07:00
Michael Vines
b4e00275b2
Cache downloads to speed up CI
2020-04-06 22:53:19 -07:00
Michael Vines
03978ac5a5
Add support for monitoring system account balances ( #9345 )
...
automerge
2020-04-06 21:41:53 -07:00
Dan Albert
33a68ec9c3
Fix docs ( #9349 )
...
automerge
2020-04-06 20:17:20 -07:00
Dan Albert
c78b658a92
Clean up paper/file system wallet docs ( #9340 )
...
* Add filesystem wallet page
* Move validator paper wallet instructions to validator page
* Remove paper wallet staking section
* Add steps for multiple fs and paper wallets
* Add keypair convention page and better multi-wallet example
2020-04-06 19:32:02 -06:00
Tyera Eulberg
6b988155e1
RpcClient: include signature check in send_transaction, bump send retries in get_num_blocks_since_signature_confirmation ( #9341 )
...
* Bump rpc send retries
* Add signature check to send_transaction and update mocks to test
2020-04-06 19:27:37 -06:00
sakridge
4677cdb4c2
Optimize broadcast cluster_info critical section ( #9327 )
2020-04-06 17:36:22 -07:00
Tyera Eulberg
96c23110ae
Make TestValidator mint_lamports configurable ( #9337 )
...
automerge
2020-04-06 16:20:55 -07:00
Greg Fitzgerald
a4e2ee99d3
Add Rust client proposal ( #9246 )
...
* Add Rust client proposal
* Apply review feedback
2020-04-06 16:38:03 -06:00
Dan Albert
9a9fa5594d
Add instructions for multiple trust wallet addresses ( #9335 )
...
automerge
2020-04-06 15:00:06 -07:00
Greg Fitzgerald
1c73f3e100
Default to mainnet-beta ( #9326 )
2020-04-06 15:47:37 -06:00
Dan Albert
75234e28e5
Update choose cluster docs ( #9328 )
...
automerge
2020-04-06 12:16:32 -07:00
Michael Vines
b20edaca26
Allow v1.0 backports from v1.1
2020-04-06 11:26:39 -07:00
dependabot-preview[bot]
62cb2cd13c
Bump serde_json from 1.0.49 to 1.0.51
...
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.49 to 1.0.51.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.49...v1.0.51 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-06 08:40:55 -07:00
Michael Vines
bfea3572ea
Fix solana-dos arguments
2020-04-06 08:28:45 -07:00
Tyera Eulberg
acf64f8476
Update getSignatureStatuses to return historical statuses ( #9314 )
...
automerge
2020-04-06 03:04:54 -07:00
Ryo Onodera
b28ec430e4
Introduce background stale AppendVec shrink mechanism ( #9219 )
...
* Introduce background AppendVec shrink mechanism
* Support ledger tool
* Clean up
* save
* save
* Fix CI
* More clean up
* Add tests
* Clean up yet more
* Use account.hash...
* Fix typo....
* Add comment
* Rename accounts_cleanup_service
2020-04-06 17:30:23 +09:00
carllin
7b68628e6c
Remove write lock ( #9311 )
...
* Remove write lock
Co-authored-by: Carl <carl@solana.com >
2020-04-05 15:18:45 -07:00
Justin Starry
b584174d67
Deprecate confirmTransaction
, getSignatureStatus
, and getSignatureConfirmation
( #9298 )
...
* Deprecate `confirmTransaction`, `getSignatureStatus`, etc
* Rename get_signature_statuses to get_signature_statuses_with_commitment
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-04-05 14:31:24 +08:00
Tyera Eulberg
49e2cc6593
Rework TransactionStatus index in blockstore ( #9281 )
...
automerge
2020-04-04 20:24:06 -07:00
Michael Vines
36ab7e0600
Remove h
2020-04-04 16:18:25 -07:00
Michael Vines
ad0997e15f
RPC: add err
field to TransactionStatus, alongside the now deprecated status
field ( #9296 )
...
automerge
2020-04-04 16:13:26 -07:00
dependabot-preview[bot]
8cdf406dd3
Bump serde from 1.0.105 to 1.0.106
...
Bumps [serde](https://github.com/serde-rs/serde ) from 1.0.105 to 1.0.106.
- [Release notes](https://github.com/serde-rs/serde/releases )
- [Commits](https://github.com/serde-rs/serde/compare/v1.0.105...v1.0.106 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-04 15:13:52 -07:00
dependabot-preview[bot]
2d618722e6
Bump cbindgen from 0.13.2 to 0.14.0
...
Bumps [cbindgen](https://github.com/eqrion/cbindgen ) from 0.13.2 to 0.14.0.
- [Release notes](https://github.com/eqrion/cbindgen/releases )
- [Changelog](https://github.com/eqrion/cbindgen/blob/master/CHANGES )
- [Commits](https://github.com/eqrion/cbindgen/compare/v0.13.2...v0.14.0 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
2020-04-04 15:13:43 -07:00
sakridge
c0afbae940
Reduce bench-tps funding printing ( #9290 )
2020-04-04 08:21:28 -07:00
Jack May
ed86d8d1fc
Add native loader entry points ( #9275 )
2020-04-03 17:40:59 -07:00
Michael Vines
c1441a2a8f
Advance if no blocks are available in the given range
2020-04-03 14:59:04 -07:00
Michael Vines
b557b3170e
Add log before opening database
2020-04-03 14:55:06 -07:00
sakridge
9493de4443
Add snapshot compression option ( #9276 )
2020-04-03 13:13:49 -07:00
Dan Albert
175ffd9054
Update set-solana-release-tag.sh
2020-04-03 11:21:34 -06:00
Michael Vines
66c78cb819
Apply suggestions from code review
2020-04-03 09:58:40 -07:00
Michael Vines
962e41f9ca
vote-authorize-voter
no longer fails if the current authorized voter is not the fee payer
2020-04-03 09:58:40 -07:00
Dan Albert
fd5f8a8046
Fix sed command for mac and linux ( #9286 )
2020-04-03 10:42:33 -06:00
Jack May
d61191db40
fix bench warnings ( #9277 )
2020-04-02 21:56:38 -07:00
carllin
0139236464
ReplayStage fixes ( #9271 ) ( #9279 )
...
automerge
2020-04-02 21:05:33 -07:00
Michael Vines
c5b2db72a2
Add option to monitor catchup at max commitment
2020-04-02 19:05:33 -07:00
Michael Vines
303a1207c1
Add --follow option to catchup command to allow for easy ongoing monitoring between two nodes
2020-04-02 19:05:33 -07:00
Jack May
1078c86100
Streamer test is linux only, remove warnings on not-linux ( #9274 )
...
automerge
2020-04-02 18:02:49 -07:00
Jack May
c67e9fabc4
Nit: ProgramError cleanup ( #9273 )
...
automerge
2020-04-02 17:46:51 -07:00
Dan Albert
ad98f14fc1
Minor doc fixup
2020-04-02 15:59:49 -06:00
Tyera Eulberg
ec4745d174
Tame overeager wallet manager ( #9262 )
...
* Add helper fn to check for usb cli args
* Use helper fn to prevent wallet_manager connecting unnecessarily
* Review improvements
2020-04-02 15:47:17 -06:00
Dan Albert
0e53939e00
Add windows instructions to CLI install docs ( #9270 )
2020-04-02 15:36:02 -06:00
Dan Albert
8d1cd3ae5c
Set checks timeout back to 20 minutes
2020-04-02 13:10:26 -06:00
Dan Albert
18fe0f0c44
Add instructions for Trust Wallet Beta for Android ( #9261 )
...
automerge
2020-04-02 11:26:22 -07:00
Dan Albert
3b89708653
Add ledger live screenshots and reduce duplicate instructions ( #9258 )
...
automerge
2020-04-02 10:17:40 -07:00
Michael Vines
23bf7b8d63
Add epoch subcommand ( #9249 )
...
automerge
2020-04-01 20:42:28 -07:00
sakridge
a8817fb973
Add some information about what an address can be for CLI commands ( #9233 )
2020-04-01 19:45:37 -07:00
Michael Vines
8b14eb9020
Place AccountsHashes in same enum ordinal position as the v1.0 version ( #9251 )
...
automerge
2020-04-01 18:47:50 -07:00
Tyera Eulberg
25ee36bbba
Undo breaking rpc removal of getSignatureConfirmation ( #9245 )
2020-04-01 17:56:18 -06:00
Dan Albert
19693a85cd
Do not trigger tests if only docs were modified ( #9240 )
2020-04-01 14:18:29 -06:00
Justin Starry
c7ba1994ac
Undo getSignatureStatus breaking change, add getSignatureStatuses ( #9228 )
...
automerge
2020-04-01 11:30:58 -07:00
Jack May
9aab0b9388
More custom error rename ( #9227 )
...
automerge
2020-04-01 11:13:31 -07:00
Greg Fitzgerald
492b7d5ef9
Add fee-payer option to docs ( #9230 )
...
automerge
2020-04-01 10:38:55 -07:00
Dan Albert
352de7929b
Add a support page for wallet docs ( #9229 )
...
automerge
2020-04-01 10:37:52 -07:00
dependabot-preview[bot]
9f5d3f0ee5
Bump socket2 from 0.3.11 to 0.3.12 ( #9222 )
...
Bumps [socket2](https://github.com/alexcrichton/socket2-rs ) from 0.3.11 to 0.3.12.
- [Release notes](https://github.com/alexcrichton/socket2-rs/releases )
- [Commits](https://github.com/alexcrichton/socket2-rs/compare/0.3.11...0.3.12 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-04-01 09:33:22 -07:00
Dan Albert
691a3c6087
Add single testcase to run entire TPS report ( #9143 )
2020-04-01 10:29:18 -06:00
Jack May
268e04cb4a
Rename CustomError to Custom ( #9207 )
2020-04-01 09:01:11 -07:00
sakridge
7605f1f540
Fix repair dos ( #9056 )
2020-04-01 06:48:35 -07:00
Michael Vines
b543aee24e
Tune udp buffers and vmmap immediately ( #9194 )
2020-03-31 22:53:36 -07:00
sakridge
a74a64084d
Fix error with account hash list getting too big for gossip ( #9197 )
...
Nodes will stop publishing hashes on gossip and also
slow memory leak.
2020-03-31 21:39:48 -07:00
Greg Fitzgerald
743b8cddf9
Clean up solana-stake-accounts ( #9211 )
...
* Resolve pubkey/keypair args in a separate module
* Rename CommandConfig to Args
2020-03-31 21:47:43 -06:00
Jack May
74774dd44f
Add program_error conversions ( #9203 )
2020-03-31 19:56:09 -07:00
Jack May
a8d4b1c90a
Nit: fmt ( #9204 )
...
automerge
2020-03-31 19:19:59 -07:00
Greg Fitzgerald
3a6cdf02e5
Fix solana-stake-accounts rebase/move ( #9199 )
...
automerge
2020-03-31 19:07:00 -07:00
Tyera Eulberg
56667e17c9
Fix panic ( #9195 )
...
automerge
2020-03-31 18:33:46 -07:00
Jack May
1e6b789bfa
Improve BPF Loader reporting ( #9202 )
...
automerge
2020-03-31 18:18:44 -07:00
sakridge
a61ddb6f61
max_ledger_slots -> max_ledger_shreds ( #9198 )
...
automerge
2020-03-31 17:21:19 -07:00
sakridge
62e12e3af5
Remove unecessary exception and add a new one ( #9200 )
2020-03-31 15:58:30 -07:00
Jack May
93be7370d9
Nit: print program error as hex ( #9171 )
2020-03-31 10:08:07 -07:00
Jack May
130c0b484d
Enforce an executable's rent exemption in the runtime ( #9134 )
2020-03-31 10:07:38 -07:00
Greg Fitzgerald
974848310c
Add more Ledger wallet documentation ( #9182 )
...
* Add a note for getting past the 'pending Ledger review' screen
* Add a note about zsh question marks
2020-03-31 10:56:06 -06:00
Dan Albert
49494be653
Fix links ( #9184 )
...
automerge
2020-03-31 09:46:50 -07:00
Michael Vines
0e2722c638
solana-validator now supports multiple --authorized-voter arguments ( #9174 )
...
* Use Epoch type
* Vote account's authorized voter is now supported without a validator restart
2020-03-31 08:23:42 -07:00
carllin
66946a4680
Check ClusterSlots for confirmation of block propagation ( #9115 )
2020-03-30 19:57:11 -07:00
dependabot-preview[bot]
24d887a38a
Bump assert_cmd from 1.0.0 to 1.0.1 ( #9172 )
...
Bumps [assert_cmd](https://github.com/assert-rs/assert_cmd ) from 1.0.0 to 1.0.1.
- [Release notes](https://github.com/assert-rs/assert_cmd/releases )
- [Changelog](https://github.com/assert-rs/assert_cmd/blob/master/CHANGELOG.md )
- [Commits](https://github.com/assert-rs/assert_cmd/compare/v1.0.0...v1.0.1 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-03-30 20:42:07 -06:00
sakridge
73e99cc513
Ledger cleanup fixes ( #9131 )
...
* Fix purging happening every slot when cleanup service is not started at slot 0
* Purge by shred count instead of slots since slots can have variable
number of shreds
2020-03-30 19:02:12 -07:00
Greg Fitzgerald
e6db701c17
Install solana-stake-accounts ( #9169 )
...
automerge
2020-03-30 17:45:10 -07:00
Tyera Eulberg
50fa577af8
Use cluster confirmations in rpc and pubsub ( #9138 )
...
* Add runtime methods to simply get status and slot
* Add helper function to get slot confirmation_count from BlockCommitmentCache
* Return cluster confirmations in getSignatureStatus
* Remove use of invalid get_signature_confirmation_status
* Remove unused methods
* Update pubsub to use cluster confirmations
* Fix test_check_signature_subscribe failure
* Refactor confirmations to read commitment cache only once
* Review comments
* Use bank, root from BlockCommitmentCache
* Update docs
* Add metric for block-commitment aggregations
Co-authored-by: Justin Starry <justin@solana.com >
2020-03-30 17:53:25 -06:00
Greg Fitzgerald
8636ef5e24
Add solana-stake-accounts CLI tool ( #9164 )
...
automerge
2020-03-30 15:04:46 -07:00
Tyera Eulberg
62040cef56
Store BlockCommitmentCache slot and root metadata ( #9154 )
...
automerge
2020-03-30 10:29:30 -07:00
dependabot-preview[bot]
8731b6279f
Bump thiserror from 1.0.13 to 1.0.14 ( #9151 )
...
Bumps [thiserror](https://github.com/dtolnay/thiserror ) from 1.0.13 to 1.0.14.
- [Release notes](https://github.com/dtolnay/thiserror/releases )
- [Commits](https://github.com/dtolnay/thiserror/compare/1.0.13...1.0.14 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
2020-03-29 15:33:11 -07:00
sakridge
ae66c0e497
Add repair message support to dos tool ( #9090 )
2020-03-29 14:44:25 -07:00
sakridge
c67703e7a3
Make repair metrics less chatty ( #9094 )
2020-03-29 14:43:58 -07:00
sakridge
b1771b92ec
Calculate ref counts earlier to prevent bad clean ( #9147 )
2020-03-29 14:42:34 -07:00
Michael Vines
5f31444300
catchup now retries when the desired node is not yet online ( #9148 )
2020-03-29 09:40:53 -07:00
Ryo Onodera
729cc4e04f
Sanitize zero lamport accounts in append vecs ( #9083 )
2020-03-29 15:45:45 +09:00
dependabot-preview[bot]
2ed3e2160d
Bump serde_json from 1.0.48 to 1.0.49 ( #9139 )
...
* Bump serde_json from 1.0.48 to 1.0.49
Bumps [serde_json](https://github.com/serde-rs/json ) from 1.0.48 to 1.0.49.
- [Release notes](https://github.com/serde-rs/json/releases )
- [Commits](https://github.com/serde-rs/json/compare/v1.0.48...v1.0.49 )
Signed-off-by: dependabot-preview[bot] <support@dependabot.com >
* Update serde_json in programs
Co-authored-by: dependabot-preview[bot] <27856297+dependabot-preview[bot]@users.noreply.github.com>
Co-authored-by: Justin Starry <justin@solana.com >
2020-03-28 12:19:40 -07:00
Justin Starry
8bbf6e3f54
Fix race in RPC subscriptions test ( #9142 )
2020-03-29 01:58:51 +08:00
Michael Vines
d7fa40087c
Bump version to 1.2.0
2020-03-28 09:44:13 -07:00