89 Commits

Author SHA1 Message Date
Ian Culp
f42274a6b3
Rename 17_6_sendtx.playground to 18_6_sendtx.playground 2021-10-06 15:54:19 -05:00
Ian Culp
78554ade58
Rename 17_6_getinfo.playground to 18_6_getinfo.playground 2021-10-06 15:54:11 -05:00
Ian Culp
d04dacd847
Rename 17_5_main-sendtx.rs to 18_5_main-sendtx.rs 2021-10-06 15:54:03 -05:00
Ian Culp
a0f14d72f1
Rename 17_5_main-getinfo.rs to 18_5_main-getinfo.rs 2021-10-06 15:53:52 -05:00
Ian Culp
1c890c7177
Rename 17_4_walletinfo.py to 18_4_walletinfo.py 2021-10-06 15:53:45 -05:00
Ian Culp
a89f4c3b66
Rename 17_4_sendtx.py to 18_4_sendtx.py 2021-10-06 15:53:38 -05:00
Ian Culp
ad512f6999
Rename 17_4_getinfo.py to 18_4_getinfo.py 2021-10-06 15:53:31 -05:00
Ian Culp
c77ead3926
Rename 17_3_walletinfo.js to 18_3_walletinfo.js 2021-10-06 15:53:24 -05:00
Ian Culp
41657338d5
Rename 17_3_sendtx.js to 18_3_sendtx.js 2021-10-06 15:53:17 -05:00
Ian Culp
f2e551e9ad
Rename 17_3_getinfo.js to 18_3_getinfo.js 2021-10-06 15:53:10 -05:00
Ian Culp
66e8da64a9
Rename 17_2_App-sendtx.java to 18_2_App-sendtx.java 2021-10-06 15:53:02 -05:00
Ian Culp
d2642d6531
Rename 17_2_App-listen.java to 18_2_App-listen.java 2021-10-06 15:52:53 -05:00
Ian Culp
255bb7822f
Rename 17_2_App-getinfo.java to 18_2_App-getinfo.java 2021-10-06 15:52:45 -05:00
Ian Culp
c98d25180f
Rename 17_1_sendtransaction.go to 18_1_sendtransaction.go 2021-10-06 15:52:36 -05:00
Ian Culp
e5b650732b
Rename 17_1_lookuptransaction.go to 18_1_lookuptransaction.go 2021-10-06 15:52:30 -05:00
Ian Culp
d4b73e5f95
Rename 17_1_getbalance.go to 18_1_getbalance.go 2021-10-06 15:52:21 -05:00
Ian Culp
d4277dae06
Rename 17_1_getamountreceived.go to 18_1_getamountreceived.go 2021-10-06 15:52:13 -05:00
Ian Culp
72f0eea840
Rename 17_1_getaddress.go to 18_1_getaddress.go 2021-10-06 15:52:05 -05:00
Ian Culp
71f0da240c
Rename 17_1_blockinfo.go to 18_1_blockinfo.go 2021-10-06 15:51:58 -05:00
Ian Culp
6e380c073a
Rename 16_7_genhd_for_import.c to 17_7_genhd_for_import.c 2021-10-06 15:51:50 -05:00
Ian Culp
3471e3f246
Rename 16_5_replacewithscript.c to 17_5_replacewithscript.c 2021-10-06 15:51:40 -05:00
Ian Culp
5490feff67
Rename 16_4_examinepsbt.c to 17_4_examinepsbt.c 2021-10-06 15:51:31 -05:00
Ian Culp
0bcfbf8071
Rename 16_4_createemptypsbt.c to 17_4_createemptypsbt.c 2021-10-06 15:51:23 -05:00
Ian Culp
e3b10f7e7c
Rename 16_3_genhd.c to 17_3_genhd.c 2021-10-06 15:51:14 -05:00
Ian Culp
69af86c053
Rename 16_2_genmnemonic.c to 17_2_genmnemonic.c 2021-10-06 15:51:06 -05:00
Ian Culp
076645b729
Rename 16_1_testwally.c to 17_1_testwally.c 2021-10-06 15:50:57 -05:00
Ian Culp
44ed34d6ab
Rename 15_3_chainlistener.c to 16_3_chainlistener.c 2021-10-06 15:50:48 -05:00
Ian Culp
97f790a53a
Rename 15_2_sendtoaddress.c to 16_2_sendtoaddress.c 2021-10-06 15:50:39 -05:00
Ian Culp
58ee5d7904
Rename 15_1_testbitcoin.c to 16_1_testbitcoin.c 2021-10-06 15:50:32 -05:00
Ian Culp
69afc41db8
Rename 15_1_getmininginfo.c to 16_1_getmininginfo.c 2021-10-06 15:50:23 -05:00
Ian Culp
34d0dcac74
Rename 16_1_getmininginfo.c to 15_1_getmininginfo.c 2021-10-06 15:48:53 -05:00
Ian Culp
a240e42873
Rename 15_1_getmininginfo.c to 16_1_getmininginfo.c 2021-10-06 15:48:26 -05:00
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
b59e0d2f5e
Create 10_2_integer2lehex.sh 2020-10-20 13:09:43 -10: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
Shannon Appelcline
206929d3dd
Create 4_2_i_txfee-calc.sh 2020-10-20 13:05:32 -10:00
Shannon Appelcline
90cf9baa47
Update 17_6_getinfo.playground 2020-09-30 08:15:54 -10:00
Shannon Appelcline
7e17774d28
Delete Client.java 2020-09-30 07:39:25 -10:00
Shannon Appelcline
aba35ab695
Create 17_6_sendtx.playground 2020-09-29 15:12:55 -10:00
Shannon Appelcline
606dc8b98a
Create 17_6_getinfo.playground 2020-09-29 12:42:22 -10:00
Shannon Appelcline
e79833a14f
Create 17_5_main-sendtx.rs 2020-09-08 13:05:48 -10:00
Shannon Appelcline
203d6b84fa
Create 17_5_main-getinfo.rs 2020-09-08 12:02:19 -10:00
Shannon Appelcline
25d20e92c0
Delete 18_4_accessing_bitcoind_with_python.py
broke up the code into individual bits, per rest of chapter
2020-09-08 09:36:10 -10:00
Shannon Appelcline
89a3a9ddfa
Create 17_4_sendtx.py 2020-09-08 09:26:12 -10:00
Shannon Appelcline
e590faac97
Create 17_4_walletinfo.py 2020-09-08 08:51:47 -10:00
Shannon Appelcline
c4f6203eef
Create 17_4_getinfo.py 2020-09-02 15:24:25 -10:00
Shannon Appelcline
25a9316f25
Create 17_3_sendtx.js 2020-09-02 14:44:14 -10:00
Shannon Appelcline
b5dd11dc5c
Create 17_3_walletinfo.js 2020-09-02 14:32:41 -10:00
Shannon Appelcline
0b7900433d
Update 17_3_getinfo.js 2020-09-02 14:31:56 -10:00