65a1884c7b
Enable stricter check on rent-exempt accounts on testnet ( #12224 ) ( #12226 )
...
(cherry picked from commit 241e6f1ecf
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
v1.3.10
2020-09-15 08:07:23 +00:00
c1a9c826f3
Enable retirement of rent collect in Bank::deposit() on testnet ( #12223 ) ( #12227 )
...
(cherry picked from commit 629572831b
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-15 07:53:36 +00:00
d9d8ec480a
Enable eager-rent-collect-across-gapped-epochs bugfix ( #12219 ) ( #12222 )
...
(cherry picked from commit 7d48339b7c
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-15 06:14:35 +00:00
b5c7ad3a9b
Add new validator options for running in more restrictive environments (bp #12191 ) ( #12218 )
...
* Add --restricted-repair-only-mode flag
(cherry picked from commit 63a67f415e
)
* Add --gossip-validator argument
(cherry picked from commit daae638781
)
* Documenet how to reduce validator port exposure
(cherry picked from commit c8f03c7f6d
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-15 04:26:23 +00:00
771ff65fb4
Faucet: Improve error handling ( #12215 )
...
(cherry picked from commit af2262cbba
)
Co-authored-by: Trent Nelson <trent@solana.com >
2020-09-15 01:31:02 +00:00
a5bf59b92a
patches default impl for crds filter ( #12199 ) ( #12200 )
...
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
)
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
2020-09-13 14:10:42 +00:00
8dc019ae98
Gate pointer alignment enforcement (bp #12176 ) ( #12188 )
...
* Gate pointer alignment enforcement (#12176 )
(cherry picked from commit ae7b15f062
)
# Conflicts:
# programs/bpf/tests/programs.rs
* Fix conflicts
Co-authored-by: Jack May <jack@solana.com >
2020-09-12 00:06:39 +00:00
61dcab8c07
Update commitment options ( #12173 ) ( #12189 )
...
(cherry picked from commit 3c69cd6d61
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-11 19:24:16 +00:00
640bf7015f
Check bank capitalization (bp #11927 ) ( #12184 )
...
* Check bank capitalization (#11927 )
* Check bank capitalization
* Simplify and unify capitalization calculation
* Improve and add tests
* Avoid overflow and inhibit automatic restart
* Fix test
* Tweak checked sum for cap. and add tests
* Fix broken build after merge conflicts..
* Rename to ClusterType
* Rename confusing method
* Clarify comment
* Verify cap. in rent and inflation tests
Co-authored-by: Stephen Akridge <sakridge@gmail.com >
(cherry picked from commit de4a613610
)
# Conflicts:
# Cargo.lock
# accounts-bench/Cargo.toml
* Fix conflict 1/2
* Fix conflict 2/2
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-11 18:04:10 +00:00
db1f57162a
Fix propagation on startup from snapshot ( #12177 ) ( #12182 )
...
(cherry picked from commit 9c490e06b0
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-11 10:04:55 +00:00
bbddffa805
solana-validator --rpc-bind-address
argument now works as expected (bp #12168 ) ( #12174 )
...
* `solana-validator --rpc-bind-address` argument now works as expected
(cherry picked from commit 6f325d4594
)
* Update bootstrap-validator.sh
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-10 22:02:50 +00:00
61cf432477
Update commitment options ( #12171 ) ( #12172 )
...
(cherry picked from commit 361e5322e4
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-10 13:55:48 -06:00
9396618c12
Calc size ahead of time to alloc once ( #12154 ) ( #12169 )
...
(cherry picked from commit fd47d38e59
)
Co-authored-by: Jack May <jack@solana.com >
2020-09-10 19:17:20 +00:00
398f12dcc5
Program subscriptions now properly check results len and token program id ( #12139 ) ( #12141 )
...
(cherry picked from commit 4431080066
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-09 22:23:11 +00:00
796624adf9
uses rust intrinsics to convert hashes to u64 ( #12097 ) ( #12133 )
...
(cherry picked from commit 28f2fa3fd5
)
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
2020-09-09 16:33:15 +00:00
f6e266eff0
Activate new bpf loader on devnet ( #12124 )
...
(cherry picked from commit f54941fa15
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-09 05:48:18 +00:00
ed237af4d8
Prevent unbound memory growth by blockstore_processor ( #12110 ) ( #12122 )
...
* Prevent unbound memory growth by blockstore_processor
* Promote log to info! considering infrequency
* Exclude the time of freeing from interval...
* Skip not-shrinkable slots even if forced
* Add comment
(cherry picked from commit c274e26eb8
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-09 04:09:27 +00:00
415c80c204
Bump version to v1.3.10
2020-09-09 01:29:39 +00:00
e45f1df5dd
Reduce cap by rent's leftover as temporary measure ( #12111 ) ( #12118 )
...
* Reduce cap by rent's leftover as temporary measure
* Reset testnet cap. on start and more logs
(cherry picked from commit 5b2442d54e
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
v1.3.9
2020-09-08 20:02:46 +00:00
d26a809f1f
getMinimumBalanceForRentExemption now only responds to valid account lengths ( #12116 )
...
(cherry picked from commit 9e96180ce4
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-08 18:50:22 +00:00
d1fdc96969
Add support for deprecated loader (bp #11946 ) ( #12114 )
...
* Add support for deprecated loader (#11946 )
(cherry picked from commit ae0fd3043a
)
* fix version
Co-authored-by: Jack May <jack@solana.com >
2020-09-08 18:41:29 +00:00
a5cad340ed
Forward transactions to the expected leader instead of your own TPU port (bp #12004 ) ( #12108 )
...
* Forward transactions to the expected leader instead of your own TPU port (#12004 )
* Use PoHRecorder to send to the right leader
* cleanup
* fmt
* clippy
* Cleanup, fix bug
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit c67f8bd821
)
# Conflicts:
# banks-server/Cargo.toml
* Update Cargo.toml
Co-authored-by: anatoly yakovenko <anatoly@solana.com >
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-08 16:51:33 +00:00
2341394e8b
Rename to ClusterType and restore devnet compat. (manual bp) ( #12069 )
...
* Rename to ClusterType and restore devnet compat.
* De-duplicate parse code and add comments
* Adjust default Devnet genesis & reduce it in tests
2020-09-08 23:54:54 +09:00
180224114a
Fix RPC transaction method configs serialization ( #12100 ) ( #12102 )
...
(cherry picked from commit 9940870c89
)
Co-authored-by: Justin Starry <justin@solana.com >
2020-09-08 06:12:26 +00:00
58312655b4
Fix signature subscription panic ( #12077 ) ( #12092 )
2020-09-07 10:31:25 +00:00
f3f86f43ee
Compress snapshot archive within the validator to reduce system dependencies, and default to zstd compression (bp #12085 ) ( #12087 )
...
* 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 06:55:38 +00:00
aac38516da
cli: add block
and first-available-block
commands (bp #12083 ) ( #12084 )
...
* Add first-available-block command
(cherry picked from commit 6677996369
)
* Add block command
(cherry picked from commit 27752c4e4d
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-06 20:53:44 +00:00
cd139b8185
Fix bad predicate with malformed gossip votes ( #12072 ) ( #12078 )
...
(cherry picked from commit eabc63cdcd
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-06 05:35:00 +00:00
6a74bc1297
validator: Add --enable-bigtable-ledger-upload
flag (bp #12040 ) ( #12057 )
...
* Add --enable-bigtable-ledger-upload flag
(cherry picked from commit d8e2038dda
)
* Relocate BigTable uploader to ledger/ crate
(cherry picked from commit 91a56caed2
)
# Conflicts:
# ledger/Cargo.toml
* Cargo.lock
(cherry picked from commit 2b8a521562
)
* Add BigTableUploadService
(cherry picked from commit bc7731b969
)
* Add BigTableUploadService
(cherry picked from commit bafdcf24f5
)
* Add exit flag for bigtable upload operations
(cherry picked from commit d3611f74c8
)
* Remove dead code
(cherry picked from commit cd3c134b58
)
* Request correct access
(cherry picked from commit 4ba43c29ce
)
* Add LARGEST_CONFIRMED_ROOT_UPLOAD_DELAY
(cherry picked from commit b64fb295a1
)
* Resolve merge conflicts
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-05 17:09:32 +00:00
e9a2dd0bc1
Add --show-transactions flag to transaction-history command ( #12071 )
...
(cherry picked from commit 2332dd774f
)
Co-authored-by: Michael Vines <mvines@gmail.com >
2020-09-05 16:52:38 +00:00
feed960ef3
Bigtable bug fixes ( #12058 ) ( #12060 )
...
* Accommodate stricted get_bincode_cell in get_confirmed_signatures_for_address
* Sort signatures newest-oldest, even within slot
(cherry picked from commit 879c98efeb
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-05 03:31:35 +00:00
ae8acada8c
Add unlock epochs for blake3 ( #12054 ) ( #12056 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit a13efc52b3
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-04 23:33:53 +00:00
357a341db5
Bump getMultipleAccounts input limit ( #12050 ) ( #12052 )
...
(cherry picked from commit 954b017f85
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-04 18:58:45 +00:00
d0f715cb23
adds new CrdsFilterSet type for Vec<CrdsFilter> ( #12029 ) ( #12048 )
...
(cherry picked from commit 114c211b66
)
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
2020-09-04 14:10:12 +00:00
0fc0378347
fix solana-install syntax ( #12043 )
...
```
solana-install info
solana-install deploy
solana-install update
solana-install run
```
(cherry picked from commit 38f36a7a7a
)
Co-authored-by: pk <4514654+pkrasam@users.noreply.github.com >
2020-09-04 05:40:47 +00:00
aa3bdd3730
Revert signature-notification format change (bp #12032 ) ( #12038 )
...
* Revert signature-notification format change (#12032 )
* Use untagged RpcSignatureResult enum to avoid breaking downstream consumers of current signature subscriptions
* Clean up client duplication
* Clippy
(cherry picked from commit 39246f9dd7
)
# Conflicts:
# core/src/rpc_pubsub.rs
* Fix conflicts
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
Co-authored-by: Tyera Eulberg <tyera@solana.com >
2020-09-04 01:34:49 +00:00
962aed0961
Mark a withdraw authority as non-circulating ( #12033 ) ( #12036 )
...
(cherry picked from commit 2c091e4fca
)
Co-authored-by: Greg Fitzgerald <greg@solana.com >
2020-09-04 00:46:10 +00:00
bd76810623
Bump version to 1.3.9 ( #12034 )
2020-09-03 16:55:24 -07:00
58fe45f3e5
Don't query modern Ledger wallet app version with deprecated payload size ( #12031 )
...
(cherry picked from commit dff8242887
)
Co-authored-by: Trent Nelson <trent@solana.com >
v1.3.8
2020-09-03 21:55:55 +00:00
01a9360dbe
builds crds filters without looping over filters ( #11998 ) ( #12028 )
...
(cherry picked from commit bc7adb97ed
)
Co-authored-by: behzad nouri <behzadnouri@gmail.com >
2020-09-03 21:44:00 +00:00
f44d9d770a
Rpc: add getMultipleAccounts endpoint (bp #12005 ) ( #12024 )
...
* 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
)
* 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:46 +00:00
79d9d28e7d
Update token amounts in parsed instructions to retain full precision ( #12020 ) ( #12022 )
...
(cherry picked from commit b940da4040
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-03 19:22:24 +00:00
d273d1acb2
Fix forwarding calculation ( #12014 ) ( #12019 )
...
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit 3f39ab1e04
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-03 10:36:56 +00:00
991f188f23
Fix test ( #12013 ) ( #12017 )
...
(cherry picked from commit 36a294aae0
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-03 17:16:59 +09:00
8f02fdcc11
Purge storage rewards from accounts db for testnet ( #11996 ) ( #12011 )
...
* Purge storage rewards from accounts db for testnet
* Fix test failing only on stable
(cherry picked from commit fb71ee60aa
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-03 08:01:37 +00:00
3e78850331
Move forward token2 native mint testnet epoch ( #12007 ) ( #12010 )
...
(cherry picked from commit 4b1cb51a3e
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-03 07:48:55 +00:00
f29a741582
Clarify comments and names in inflation code ( #11977 ) ( #12008 )
...
(cherry picked from commit 89bca6110a
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-03 06:47:13 +00:00
3e6052faca
Bigtable method to return a single row of data ( #11999 ) ( #12002 )
...
(cherry picked from commit b041afe1be
)
Co-authored-by: Tyera Eulberg <teulberg@gmail.com >
2020-09-02 21:01:58 +00:00
0b0710d522
Use conventional special self notation ( #11990 ) ( #11997 )
...
(cherry picked from commit 46aac4819a
)
Co-authored-by: Ryo Onodera <ryoqun@gmail.com >
2020-09-02 11:59:16 +00:00
2f3fced8a8
Switch account hashing to blake3 ( #11969 ) ( #11992 )
...
* Switch account hashing to blake3
Co-authored-by: Carl <carl@solana.com >
(cherry picked from commit af08221aec
)
Co-authored-by: carllin <wumu727@gmail.com >
2020-09-02 08:40:07 +00:00