mirror of
https://github.com/alexgo-io/stacks-puppet-node.git
synced 2026-04-09 16:51:34 +08:00
fill in get_fees()
This commit is contained in:
@@ -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 ):
|
||||
|
||||
Reference in New Issue
Block a user