fix: add missing lsfAMMNode flag (#2674)

* add missing lsfAMMNode flag

* update HISTORY

* update HISTORY
This commit is contained in:
Omar Khan
2024-03-28 19:03:30 -04:00
committed by GitHub
parent ccad092fc2
commit 445a05e6ef
2 changed files with 3 additions and 0 deletions

View File

@@ -8,6 +8,7 @@ Subscribe to [the **xrpl-announce** mailing list](https://groups.google.com/g/xr
* Typo in `Channel` type `source_tab` -> `source_tag`
* Fix `client.requestAll` to handle filters better
* Add the missing `AMMDeposit` flag `tfTwoAssetIfEmpty`
* Add missing `lsfAMMNode` flag to `RippleState` ledger object
## 3.0.0 (2024-02-01)

View File

@@ -75,4 +75,6 @@ export enum RippleStateFlags {
lsfLowFreeze = 0x00400000,
// True, high side has set freeze flag
lsfHighFreeze = 0x00800000,
// True, trust line to AMM. Used by client apps to identify payments via AMM.
lsfAMMNode = 0x01000000,
}