@ -796,7 +796,7 @@ def settings_loop():
is_encrypted = ' yes ' if wallet . use_encryption else ' no '
is_encrypted = ' yes ' if wallet . use_encryption else ' no '
protocol = protocol_name ( p )
protocol = protocol_name ( p )
droid . fullShow ( settings_layout )
droid . fullShow ( settings_layout )
droid . fullSetList ( " myListView " , [ ' Server: ' + server , ' Protocol: ' + protocol , ' Port: ' + port , ' F ee: ' + fee , ' Password: ' + is_encrypted , ' Seed ' ] )
droid . fullSetList ( " myListView " , [ ' Server: ' + server , ' Protocol: ' + protocol , ' Port: ' + port , ' Transaction f ee: ' + fee , ' Password: ' + is_encrypted , ' Seed ' ] )
set_listview ( )
set_listview ( )
@ -854,7 +854,7 @@ def settings_loop():
set_listview ( )
set_listview ( )
elif pos == " 3 " : #fee
elif pos == " 3 " : #fee
fee = modal_input ( ' fee ' , ' miners fee ' , str ( Decimal ( wallet . fee ) / 100000000 ) , " numberDecimal " )
fee = modal_input ( ' Transaction fee' , ' The fee will be this amount multiplied by the number of inputs in your transaction. ' , str ( Decimal ( wallet . fee ) / 100000000 ) , " numberDecimal " )
if fee :
if fee :
try :
try :
fee = int ( 100000000 * Decimal ( fee ) )
fee = int ( 100000000 * Decimal ( fee ) )