From 54fe46fedab60606970ae34f8899d26cd600cef5 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Mon, 19 Nov 2012 14:19:01 -0800 Subject: [PATCH] Fix STPath breakage. --- src/cpp/ripple/SerializedTypes.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/cpp/ripple/SerializedTypes.cpp b/src/cpp/ripple/SerializedTypes.cpp index 61f526eeb..b9daae2fe 100644 --- a/src/cpp/ripple/SerializedTypes.cpp +++ b/src/cpp/ripple/SerializedTypes.cpp @@ -395,7 +395,7 @@ STPathSet* STPathSet::construct(SerializerIterator& s, SField::ref name) if (bIssuer) uIssuerID = s.get160(); - path.push_back(STPathElement(uAccountID, uCurrency, uIssuerID)); + path.push_back(STPathElement(uAccountID, uCurrency, uIssuerID, bCurrency)); } } while(1); }