Skip to content

Commit b4fa2d6

Browse files
authored
Merge pull request #496 from javiervargas/patch-76
Update 18_4_Accediendo_a_Bitcoind_con_Python.md
2 parents e6b9c90 + 33bc0e8 commit b4fa2d6

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

es/18_4_Accediendo_a_Bitcoind_con_Python.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ print("---------------------------------------------------------------\n")
122122
```
123123
### Ejecute su código
124124

125-
Puede recuperar [el código fuente en](src/17_4_getinfo.py) y ejecutarlo con `python3`:
125+
Puede recuperar [el código fuente en](https://github.com/BlockchainCommons/Learning-Bitcoin-from-the-Command-Line/blob/master/src/18_4_getinfo.py) y ejecutarlo con `python3`:
126126
```
127127
$ python3 getinfo.py
128128
---------------------------------------------------------------
@@ -225,7 +225,7 @@ print("------------")
225225
pprint(utxo_tx_details)
226226
print("---------------------------------------------------------------\n")
227227
```
228-
Este código está disponible en [walletinfo.py](src/17_4_walletinfo.py).
228+
Este código está disponible en [walletinfo.py](https://github.com/BlockchainCommons/Learning-Bitcoin-from-the-Command-Line/blob/master/src/18_4_walletinfo.py).
229229
```
230230
$ python3 walletinfo.py
231231
---------------------------------------------------------------
@@ -396,7 +396,7 @@ send_tx = rpc_client.sendrawtransaction(signed_tx['hex'])
396396
```
397397
### Ejecute su código
398398

399-
El [código de ejemplo](src/17_4_sendtx.py) está lleno de sentencias `print` para demostrar todos los datos disponibles en cada punto:
399+
El [código de ejemplo](https://github.com/BlockchainCommons/Learning-Bitcoin-from-the-Command-Line/blob/master/src/18_4_sendtx.py) está lleno de sentencias `print` para demostrar todos los datos disponibles en cada punto:
400400
```
401401
$ python3 sendtx.py
402402
Creating a Transaction
@@ -434,7 +434,7 @@ Acceder a Bitcoind con Python es muy fácil mientras usa la biblioteca `python-b
434434

435435
## ¿Qué es lo siguiente?
436436

437-
Obtén más información sobre "Cómo hablar con Bitcoin en otros lenguages" en [18.5: Cómo acceder a Bitcoin con Rust](18_5_Accediendo_a_Bitcoind_con_Rust.md).
437+
Obtén más información sobre "Cómo hablar con Bitcoin en otros lenguajes" en [18.5: Cómo acceder a Bitcoin con Rust](18_5_Accediendo_a_Bitcoind_con_Rust.md).
438438

439439
## Variante: Construir Python desde el Origen
440440

0 commit comments

Comments
 (0)