Beispiel #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
Beispiel #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
Beispiel #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
Beispiel #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