Some cleanups.

This commit is contained in:
JoelKatz
2012-10-17 10:23:03 -07:00
parent 67be1a8a55
commit 9ee4ec0649
4 changed files with 6 additions and 11 deletions

View File

@@ -57,10 +57,7 @@ class Uint160Data : public Data
{
uint160 mValue;
public:
Uint160Data(uint160 value)
{
mValue=value;
}
Uint160Data(uint160 value) : mValue(value) { ; }
bool isUint160(){ return(true); }
uint160 getUint160(){ return(mValue); }
};