Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

DNR: v1.16 rebase #320

Closed
wants to merge 17 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
17 commits
Select commit Hold shift + click to select a range
4b06538
Bump version to v1.16.7 (#32659)
willhickey Jul 31, 2023
1992d7e
v1.16: Add support for optional metric values via Option<_> (backport…
mergify[bot] Aug 1, 2023
79c8bac
v1.16: Report new received crds signatures and their respective origi…
mergify[bot] Aug 1, 2023
4ba1c2a
v1.16: removes feature-gate code for updating rewards from cached acc…
mergify[bot] Aug 3, 2023
ef598ee
v1.16: Fix - Adds missing "Executable account not owned by the BPF lo…
mergify[bot] Aug 3, 2023
06d26a3
v1.16: Fix - Adds missing feature pubkeys to the `FEATURES_AFFECTING_…
mergify[bot] Aug 3, 2023
2eede8e
v1.16: sdk: Limited Borsh 0.9 support (Pubkey and helpers) (backport …
mergify[bot] Aug 4, 2023
db2b4ef
v1.16: demotes unknown_epoch_staked_nodes metric to debug (backport o…
mergify[bot] Aug 4, 2023
19333d8
v1.16: rolls out merkle shreds to ~50% of mainnet slots (backport of …
mergify[bot] Aug 4, 2023
1a6d77a
v1.16: Add required cluster argument to solana feature activate subco…
mergify[bot] Aug 4, 2023
885d072
Bump version to v1.16.8 (#32726)
willhickey Aug 7, 2023
b6210f9
v1.16: improve prioritization fee cache accuracy (backport of #32692)…
mergify[bot] Aug 8, 2023
b46d35a
v1.16: report received message signatures only on PUSH requests (back…
mergify[bot] Aug 9, 2023
8fea568
v1.16: stake: deprecate on chain warmup/cooldown rate and config (bac…
mergify[bot] Aug 9, 2023
d2c8263
v1.16: stake: Set the Delegation's warmup / cooldown to the correct d…
mergify[bot] Aug 9, 2023
b4cefdf
v1.16: Add from field for message tracking (backport of #32725) (#32746)
mergify[bot] Aug 9, 2023
b54142c
Jito Patch
buffalu Aug 25, 2022
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
.dockerignore
.git/
.github/
.gitignore
.idea/
README.md
Dockerfile
f
target/
6 changes: 5 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
/solana-release.tar.bz2
/solana-metrics/
/solana-metrics.tar.bz2
/target/
**/target/
/test-ledger/

**/*.rs.bk
Expand All @@ -27,7 +27,11 @@ log-*/
# fetch-spl.sh artifacts
/spl-genesis-args.sh
/spl_*.so
/jito_*.so

.DS_Store
# scripts that may be generated by cargo *-bpf commands
**/cargo-*-bpf-child-script-*.sh

.env
docker-output/
9 changes: 9 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
[submodule "anchor"]
path = anchor
url = https://github.com/jito-foundation/anchor.git
[submodule "jito-programs"]
path = jito-programs
url = https://github.com/jito-foundation/jito-programs.git
[submodule "jito-protos/protos"]
path = jito-protos/protos
url = https://github.com/jito-labs/mev-protos.git
Loading