diff options
| author | Luke Dashjr <[email protected]> | 2012-04-22 10:07:24 -0400 |
|---|---|---|
| committer | Luke Dashjr <[email protected]> | 2012-04-22 10:07:24 -0400 |
| commit | 66116c3847eeb3f0619bc084d96f5add41a156c8 (patch) | |
| tree | 8952b665662e18fd4a1b6ffd5f99a39adab8d92d /src/base58.h | |
| parent | Fix bugs on 'unsigned char' platforms. (diff) | |
| parent | Merge branch '0.4.x' into 0.5.x (diff) | |
| download | discoin-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.h | 2 |
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) { |