From 704eb22195b8c8cf5882eb463cc71fb221bc9f0d Mon Sep 17 00:00:00 2001 From: JoelKatz Date: Tue, 7 Feb 2012 17:02:53 -0800 Subject: [PATCH] Cleanup --- SHAMap.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SHAMap.h b/SHAMap.h index 0e35f6b4b..342f50fec 100644 --- a/SHAMap.h +++ b/SHAMap.h @@ -164,7 +164,7 @@ public: TNType getType() const { return mType; } // type functions - bool isLeaf() const { return mType==TRANSACTION || mType==ACCOUNT_STATE; } + bool isLeaf() const { return (mType==TRANSACTION) || (mType==ACCOUNT_STATE); } bool isInner() const { return mType==INNER; } bool isValid() const { return mType!=ERROR; } bool isTransaction() const { return mType!=TRANSACTION; }