mirror of
https://github.com/XRPLF/rippled.git
synced 2025-12-06 17:27:55 +00:00
Fix ripple bugs.
- Default send max inherits source account as issuer. - Add end point implications for node expansion. - Fix rippling through accounts.
This commit is contained in:
@@ -603,7 +603,7 @@ public:
|
||||
int getElementCount() const { return mPath.size(); }
|
||||
bool isEmpty() const { return mPath.empty(); }
|
||||
const STPathElement& getElement(int offset) const { return mPath[offset]; }
|
||||
const STPathElement& getElemet(int offset) { return mPath[offset]; }
|
||||
const STPathElement& getElement(int offset) { return mPath[offset]; }
|
||||
void addElement(const STPathElement &e) { mPath.push_back(e); }
|
||||
void clear() { mPath.clear(); }
|
||||
bool hasSeen(const uint160 &acct);
|
||||
|
||||
Reference in New Issue
Block a user