Skip to content

Commit

Permalink
update solana deps
Browse files Browse the repository at this point in the history
  • Loading branch information
segfaultdoc committed Sep 29, 2023
1 parent 23471e2 commit ba26af2
Show file tree
Hide file tree
Showing 5 changed files with 49 additions and 44 deletions.
71 changes: 36 additions & 35 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

16 changes: 8 additions & 8 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -35,14 +35,14 @@ rand = "0.8"
serde = "1.0.160"
serde_derive = "1.0.160"
serde_json = "1.0.96"
solana-account-decoder = "1.16.5"
solana-geyser-plugin-interface = "1.16.5"
solana-logger = "1.16.5"
solana-metrics = "1.16.5"
solana-program = "1.16.5"
solana-sdk = "1.16.5"
solana-transaction-status = "1.16.5"
solana-vote-program = "1.16.5"
solana-account-decoder = "1.16.14"
solana-geyser-plugin-interface = "1.16.14"
solana-logger = "1.16.14"
solana-metrics = "1.16.14"
solana-program = "1.16.14"
solana-sdk = "1.16.14"
solana-transaction-status = "1.16.14"
solana-vote-program = "1.16.14"
thiserror = "1.0.40"
tokio = { version = "~1.14.1", features = ["rt-multi-thread"] }
tokio-stream = "0.1"
Expand Down
1 change: 1 addition & 0 deletions proto/proto/transaction_by_addr.proto
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,7 @@ enum TransactionErrorType {
MAX_LOADED_ACCOUNTS_DATA_SIZE_EXCEEDED = 32;
INVALID_LOADED_ACCOUNTS_DATA_SIZE_LIMIT = 33;
RESANITIZATION_NEEDED = 34;
UNBALANCED_TRANSACTION = 36;
}

message InstructionError {
Expand Down
3 changes: 3 additions & 0 deletions proto/src/convert.rs
Original file line number Diff line number Diff line change
Expand Up @@ -909,6 +909,9 @@ impl From<TransactionError> for tx_by_addr::TransactionError {
TransactionError::ResanitizationNeeded => {
tx_by_addr::TransactionErrorType::ResanitizationNeeded
}
TransactionError::UnbalancedTransaction => {
tx_by_addr::TransactionErrorType::UnbalancedTransaction
}
} as i32,
instruction_error: match transaction_error {
TransactionError::InstructionError(index, ref instruction_error) => {
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
[toolchain]
# https://github.com/solana-labs/solana/blob/v1.16.5/rust-toolchain.toml
# https://github.com/solana-labs/solana/blob/v1.16.14/rust-toolchain.toml
channel = "1.69.0"
components = [ "rustfmt", "rustc-dev", "clippy", "cargo" ]

0 comments on commit ba26af2

Please sign in to comment.