dust threshold

This commit is contained in:
ThomasV 2013-11-06 23:09:24 +01:00
parent 4f15ea12e4
commit e4cdc4da0f
1 changed files with 2 additions and 1 deletions

View File

@ -37,6 +37,7 @@ from transaction import Transaction
from plugins import run_hook
COINBASE_MATURITY = 100
DUST_THRESHOLD = 5430
# AES encryption
EncodeAES = lambda secret, s: base64.b64encode(aes.encryptData(secret,s))
@ -1185,7 +1186,7 @@ class Wallet:
def add_tx_change( self, inputs, outputs, amount, fee, total, change_addr=None):
"add change to a transaction"
change_amount = total - ( amount + fee )
if change_amount != 0:
if change_amount > DUST_THRESHOLD:
if not change_addr:
# send change to one of the accounts involved in the tx