diff --git a/blockstack_client/operations/nameimport.py b/blockstack_client/operations/nameimport.py index 05ac950b0..fcaf6a9ac 100644 --- a/blockstack_client/operations/nameimport.py +++ b/blockstack_client/operations/nameimport.py @@ -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 ):