示例#1
0
 def get_tx_fee(self, tx):
     fee = Wallet_2of3.get_tx_fee(self, tx)
     x = run_hook('extra_fee', tx)
     if x: fee += x
     return fee
示例#2
0
 def get_tx_fee(self, tx):
     fee = Wallet_2of3.get_tx_fee(self, tx)
     x = run_hook('extra_fee', tx)
     if x: fee += x
     return fee
示例#3
0
 def estimated_fee(self, tx):
     fee = Wallet_2of3.estimated_fee(self, tx)
     x = run_hook('extra_fee', tx)
     if x: fee += x
     return fee
示例#4
0
 def estimated_fee(self, tx):
     fee = Wallet_2of3.estimated_fee(self, tx)
     x = run_hook('extra_fee', tx)
     if x: fee += x
     return fee