Skip to content
This repository has been archived by the owner on Feb 15, 2024. It is now read-only.

Commit

Permalink
Decrease COIN_DUST to 0.001 BTC
Browse files Browse the repository at this point in the history
With the increase in bitcoin value (US$13.67 as of this writing), it seems
reasonable to reduce the level of which we consider "dust spam."
  • Loading branch information
Jeff Garzik authored and Jeff Garzik committed Dec 12, 2012
1 parent fea684d commit 51b7fb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/util.h
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ typedef unsigned long long uint64;

static const int64 COIN = 100000000;
static const int64 CENT = 1000000;
static const int64 COIN_DUST = CENT; // 1000000, or 0.01 BTC
static const int64 COIN_DUST = (CENT / 10); // 100000, or 0.001 BTC

#define loop for (;;)
#define BEGIN(a) ((char*)&(a))
Expand Down

0 comments on commit 51b7fb9

Please sign in to comment.