mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2026-06-28 22:30:01 +00:00
chore: add UNKNOWN status code for Ac|Mempool (#36882)
This commit is contained in:
6
types/libra-core/index.d.ts
vendored
6
types/libra-core/index.d.ts
vendored
@@ -385,18 +385,20 @@ export namespace LibraTransactionResponse {
|
||||
}
|
||||
|
||||
export enum LibraAdmissionControlStatus {
|
||||
UNKNOWN = -1,
|
||||
ACCEPTED = 0,
|
||||
BLACKLISTED = 1,
|
||||
REJECTED = 2,
|
||||
REJECTED = 2
|
||||
}
|
||||
|
||||
export enum LibraMempoolTransactionStatus {
|
||||
UNKNOWN = -1,
|
||||
VALID = 0,
|
||||
INSUFFICIENTBALANCE = 1,
|
||||
INVALIDSEQNUMBER = 2,
|
||||
MEMPOOLISFULL = 3,
|
||||
TOOMANYTRANSACTIONS = 4,
|
||||
INVALIDUPDATE = 5,
|
||||
INVALIDUPDATE = 5
|
||||
}
|
||||
|
||||
export interface LibraSignedTransaction {
|
||||
|
||||
Reference in New Issue
Block a user