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

Fix INSUFFICIENT_BALANCE_FOR_TRANSACTION_FEE description #12439

Merged
merged 1 commit into from
Mar 9, 2024
Merged
Changes from all commits
Commits
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
3 changes: 2 additions & 1 deletion third_party/move/move-core/types/src/vm_status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -514,7 +514,8 @@ pub enum StatusCode {
SEQUENCE_NUMBER_TOO_OLD = 3,
// Sequence number is too new
SEQUENCE_NUMBER_TOO_NEW = 4,
// Insufficient balance to pay minimum transaction fee
// Insufficient balance to pay for max_gas specified in the transaction.
// Balance needs to be above max_gas_amount * gas_unit_price to proceed.
INSUFFICIENT_BALANCE_FOR_TRANSACTION_FEE = 5,
// The transaction has expired
TRANSACTION_EXPIRED = 6,
Expand Down
Loading