From 7a84e5e54fa7835978c111076459a51511e02c8b Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Wed, 18 Jan 2012 14:15:22 -0800 Subject: [PATCH] Cleanup --- Serializer.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Serializer.h b/Serializer.h index b86e7a54f..3e8c55451 100644 --- a/Serializer.h +++ b/Serializer.h @@ -54,8 +54,8 @@ class Serializer // signature functions bool checkSignature(int pubkeyOffset, int signatureOffset) const; - bool checkSignature(const std::vector &signature, CKey& rkey) const; - bool makeSignature(std::vector &signature, CKey& rkey) const; + bool checkSignature(const std::vector& signature, CKey& rkey) const; + bool makeSignature(std::vector& signature, CKey& rkey) const; bool addSignature(CKey& rkey); static void TestSerializer();