fill in get_fees()

This commit is contained in:
Jude Nelson
2017-04-12 17:12:45 -04:00
parent 5b0d506a2a
commit a49dfba9b6

View File

@@ -118,10 +118,11 @@ def make_transaction(name, recipient_address, update_hash, import_addr, blockcha
def get_fees( inputs, outputs ):
"""
Blockstack currently does not allow
the subsidization of namespaces.
Return (dust fee, op fee) totals
op fee will be zero
dust fee is the sum of the minimum output values
"""
return (None, None)
return ((len(inputs) + 3) * DEFAULT_DUST_FEE + DEFAULT_OP_RETURN_FEE, 0)
def snv_consensus_extras( name_rec, block_id, blockchain_name_data ):