mirror of
https://github.com/Xahau/xahaud.git
synced 2025-12-06 17:27:52 +00:00
Mostly small cleanups and style fixes.
This commit is contained in:
@@ -31,8 +31,8 @@ public:
|
||||
|
||||
bool credit(uint64 a) { mBalance+=a; }
|
||||
bool charge(uint64 a) { assert(mBalance>=a); mBalance-=a; }
|
||||
void incSeq(void) { mAccountSeq++; }
|
||||
void decSeq(void) { assert(mAccountSeq!=0); mAccountSeq--; }
|
||||
void incSeq() { mAccountSeq++; }
|
||||
void decSeq() { assert(mAccountSeq!=0); mAccountSeq--; }
|
||||
|
||||
std::vector<unsigned char> getRaw() const;
|
||||
};
|
||||
|
||||
Reference in New Issue
Block a user