diff options
author | John Wiegley <johnw@newartisans.com> | 2023-11-24 23:33:59 -0800 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2024-08-05 08:35:56 -0700 |
commit | 67de3bce35de8158cd25750901a322cc02071c95 (patch) | |
tree | 984346a9cdd73dcd7c9dbc9175143e1f759a8263 /src/xact.h | |
parent | 6e9fda06df1754f58c347e44a4579d059dfd36f0 (diff) | |
download | fork-ledger-67de3bce35de8158cd25750901a322cc02071c95.tar.gz fork-ledger-67de3bce35de8158cd25750901a322cc02071c95.tar.bz2 fork-ledger-67de3bce35de8158cd25750901a322cc02071c95.zip |
Make xact hashes independent of posting order
Also, support matching provided hashes against a prefixed of the generated
hash.
Diffstat (limited to 'src/xact.h')
-rw-r--r-- | src/xact.h | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -128,7 +128,7 @@ public: virtual bool valid() const; - virtual string hash(string nonce) const; + string hash(string nonce) const; }; class auto_xact_t : public xact_base_t |