From 431ba3033520bf9405c65df1dd15ba76d0aebc67 Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Fri, 28 Sep 2012 19:34:21 -0700 Subject: [PATCH] Missing function. --- src/SerializedTransaction.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/SerializedTransaction.h b/src/SerializedTransaction.h index 953cf20947..8153a76487 100644 --- a/src/SerializedTransaction.h +++ b/src/SerializedTransaction.h @@ -47,7 +47,7 @@ public: void setTransactionFee(const STAmount& fee) { setValueFieldAmount(sfFee, fee); } NewcoinAddress getSourceAccount() const { return getValueFieldAccount(sfAccount); } - std::vector getSigningPubKey() const; + std::vector getSigningPubKey() const { return getValueFieldVL(sfSigningPubKey); } void setSigningPubKey(const NewcoinAddress& naSignPubKey); void setSourceAccount(const NewcoinAddress& naSource); std::string getTransactionType() const { return mFormat->t_name; }