Skip to content

Commit

Permalink
fmt
Browse files Browse the repository at this point in the history
  • Loading branch information
lijunwangs committed Oct 17, 2023
1 parent d2f44a3 commit e902e57
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/postgres_client/postgres_client_transaction.rs
Original file line number Diff line number Diff line change
Expand Up @@ -409,7 +409,9 @@ impl From<&TransactionError> for DbTransactionErrorCode {
Self::InvalidLoadedAccountsDataSizeLimit
}
TransactionError::ResanitizationNeeded => Self::ResanitizationNeeded,
TransactionError::ProgramExecutionTemporarilyRestricted {account_index: _} => Self::ProgramExecutionTemporarilyRestricted,
TransactionError::ProgramExecutionTemporarilyRestricted { account_index: _ } => {
Self::ProgramExecutionTemporarilyRestricted
}
TransactionError::UnbalancedTransaction => Self::UnbalancedTransaction,
}
}
Expand Down

0 comments on commit e902e57

Please sign in to comment.