aboutsummaryrefslogtreecommitdiff
path: root/src/base58.h
diff options
context:
space:
mode:
authorLuke Dashjr <[email protected]>2012-04-22 10:07:24 -0400
committerLuke Dashjr <[email protected]>2012-04-22 10:07:24 -0400
commit66116c3847eeb3f0619bc084d96f5add41a156c8 (patch)
tree8952b665662e18fd4a1b6ffd5f99a39adab8d92d /src/base58.h
parentFix bugs on 'unsigned char' platforms. (diff)
parentMerge branch '0.4.x' into 0.5.x (diff)
downloaddiscoin-66116c3847eeb3f0619bc084d96f5add41a156c8.tar.xz
discoin-66116c3847eeb3f0619bc084d96f5add41a156c8.zip
Merge branch '0.5.x' into 0.6.0.x
Conflicts: src/main.h src/net.cpp src/util.cpp
Diffstat (limited to 'src/base58.h')
-rw-r--r--src/base58.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/base58.h b/src/base58.h
index 7fefbc5d7..90ce34b05 100644
--- a/src/base58.h
+++ b/src/base58.h
@@ -288,7 +288,7 @@ public:
bool IsValid() const
{
- int nExpectedSize = 20;
+ unsigned int nExpectedSize = 20;
bool fExpectTestNet = false;
switch(nVersion)
{