Skip to content

Commit

Permalink
Reduce MIN Mixin
Browse files Browse the repository at this point in the history
  • Loading branch information
2acoin committed Dec 1, 2018
1 parent f422b38 commit 339eeed
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/config/CryptoNoteConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ const uint64_t MAXIMUM_MIXIN_V1 = 100;
const uint64_t MINIMUM_MIXIN_V2 = 0;
const uint64_t MAXIMUM_MIXIN_V2 = 7;

const uint64_t MINIMUM_MIXIN_V3 = 3;
const uint64_t MINIMUM_MIXIN_V3 = 0;
const uint64_t MAXIMUM_MIXIN_V3 = 3;

/* The heights to activate the mixin limits at */
Expand Down
4 changes: 2 additions & 2 deletions src/config/version.h.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
#define PROJECT_COPYRIGHT "Copyright 2018, 2ACoin Developers"
#define APP_VER_MAJOR 1
#define APP_VER_MINOR 1
#define APP_VER_REV 2
#define APP_VER_BUILD 41
#define APP_VER_REV 3
#define APP_VER_BUILD 42

#define BUILD_COMMIT_ID "@VERSION@"
#define PROJECT_VERSION STR(APP_VER_MAJOR) "." STR(APP_VER_MINOR) "." STR(APP_VER_REV)
Expand Down

0 comments on commit 339eeed

Please sign in to comment.