Example #1
0
void
stpath_append_one (STPath& st,
    jtx::IOU const& iou)
{
    st.push_back(STPathElement({
        iou.account.id(), iou.currency, boost::none }));
}
Example #2
0
void
stpath_append_one (STPath& st,
    jtx::BookSpec const& book)
{
    st.push_back(STPathElement({
        boost::none, book.currency, book.account }));
}
Example #3
0
void
stpath_append_one (STPath& st,
    STPathElement const& pe)
{
    st.push_back(pe);
}