Add RPC ripple command and improve wallet_propose.

This commit is contained in:
Arthur Britto
2012-08-13 17:05:35 -07:00
parent 05304cc1fc
commit 9e41cac0da
5 changed files with 299 additions and 30 deletions

View File

@@ -346,6 +346,12 @@ STPathSet* STPathSet::construct(SerializerIterator& s, const char *name)
} while(1);
}
bool STPathSet::isEquivalent(const SerializedType& t) const
{
const STPathSet* v = dynamic_cast<const STPathSet*>(&t);
return v && (value == v->value);
}
int STPathSet::getLength() const
{
int ret = 0;