Sha256: 4445029849d5207b054818801cad586f488a92f8f8d390ca36b996c23892d522
Contents?: true
Size: 583 Bytes
Versions: 6
Compression:
Stored size: 583 Bytes
Contents
// Copyright (c) The Libra Core Contributors // SPDX-License-Identifier: Apache-2.0 syntax = "proto3"; package mempool; enum MempoolAddTransactionStatus { // Transaction was sent to Mempool Valid = 0; // The sender does not have enough balance for the transaction. InsufficientBalance = 1; // Sequence number is old, etc. InvalidSeqNumber = 2; // Mempool is full (reached max global capacity) MempoolIsFull = 3; // Account reached max capacity per account TooManyTransactions = 4; // Invalid update. Only gas price increase is allowed InvalidUpdate = 5; }
Version data entries
6 entries across 6 versions & 1 rubygems