3 Commits

Author SHA1 Message Date
psqnt
7661a72caf
Update 04_2_i_txfee-calc.sh
use $btcout_f
2020-11-01 08:45:50 -05:00
psqnt
eadefbcf0c
fix for jq auto formatting decimals
jq auto formats decimals to scientific notation so the calculation on the last line of the script fails on a syntax error:

For example:
```
$ echo "0.0001 - 9.5e-05" | /usr/bin/bc
(standard_in) 1: syntax error
```
vs this:
```
$ echo "0.0001 - 0.000095" | /usr/bin/bc
.000005
```
2020-11-01 08:43:04 -05:00
Shannon Appelcline
14c0cb9990
Rename 4_2_i_txfee-calc.sh to 04_2_i_txfee-calc.sh 2020-10-20 13:05:49 -10:00