mirror of
				https://github.com/ChristopherA/Learning-Bitcoin-from-the-Command-Line.git
				synced 2025-10-31 02:17:24 +00:00 
			
		
		
		
	Merge pull request #593 from histamineblkr/patch-1
Uncomplicate btcblock alias and fix 301 error
This commit is contained in:
		
						commit
						9d1282bdea
					
				| @ -45,15 +45,13 @@ You can do this by looking at a blocknet explorer, such as [the Blockcypher Test | |||||||
| 
 | 
 | ||||||
| If you'd like an alias to look at everything at once, the following currently works for Testnet, but may disappear at some time in the future: | If you'd like an alias to look at everything at once, the following currently works for Testnet, but may disappear at some time in the future: | ||||||
| ``` | ``` | ||||||
| $ cat >> ~/.bash_profile << EOF | $ echo "alias btcblock='echo \$(bitcoin-cli -testnet getblockcount)/\$(curl -s https://blockstream.info/testnet/api/blocks/tip/height)'" >> .bash_profile | ||||||
| alias btcblock="echo \\\`bitcoin-cli -testnet getblockcount 2>&1\\\`/\\\`wget -O - https://blockstream.info/testnet/api/blocks/tip/height 2> /dev/null | cut -d : -f2 | rev | cut -c 1- | rev\\\`" |  | ||||||
| EOF |  | ||||||
| $ source .bash_profile  | $ source .bash_profile  | ||||||
| $ btcblock | $ btcblock | ||||||
| 1804372/1804372 | 1804372/1804372 | ||||||
| ``` | ``` | ||||||
| 
 | 
 | ||||||
| > :link: **TESTNET vs MAINNET:** Remember that this tutorial generally assumes that you are using testnet. If you're using the mainnet instead, you can retrieve the current block height with: `wget -O - http://blockchain.info/q/getblockcount 2>/dev/null`. You can replace the latter half of the `btcblock` alias (after `/`) with that. | > :link: **TESTNET vs MAINNET:** Remember that this tutorial generally assumes that you are using testnet. If you're using the mainnet instead, you can retrieve the current block height with: `curl -s https://blockchain.info/q/getblockcount`. You can replace the latter half of the `btcblock` alias (after `/\$(`) with that. | ||||||
| 
 | 
 | ||||||
| If you're not up-to-date, but your `getblockcount` is increasing, no problem. Total download time can take from an hour to several hours, depending on your setup. | If you're not up-to-date, but your `getblockcount` is increasing, no problem. Total download time can take from an hour to several hours, depending on your setup. | ||||||
| 
 | 
 | ||||||
|  | |||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user