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:
Arthur Britto
2012-11-03 04:16:48 -07:00
parent 4adb0e07a2
commit 7c595bf23b
3 changed files with 101 additions and 53 deletions

View File

@@ -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);