<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>http://en.zaoniao.it/index.php?action=history&amp;feed=atom&amp;title=Elis-API</id>
	<title>Elis-API - Revision history</title>
	<link rel="self" type="application/atom+xml" href="http://en.zaoniao.it/index.php?action=history&amp;feed=atom&amp;title=Elis-API"/>
	<link rel="alternate" type="text/html" href="http://en.zaoniao.it/index.php?title=Elis-API&amp;action=history"/>
	<updated>2026-05-15T19:02:05Z</updated>
	<subtitle>Revision history for this page on the wiki</subtitle>
	<generator>MediaWiki 1.32.0</generator>
	<entry>
		<id>http://en.zaoniao.it/index.php?title=Elis-API&amp;diff=4807&amp;oldid=prev</id>
		<title>Admin: Created page with &quot;'''Bitcoin API call list (as of version 0.3.20.2) with code samples and returned values.'''  == API Calls ==  API Calls to JSON-RPC are sent using POST method and parameters a...&quot;</title>
		<link rel="alternate" type="text/html" href="http://en.zaoniao.it/index.php?title=Elis-API&amp;diff=4807&amp;oldid=prev"/>
		<updated>2019-05-18T11:02:38Z</updated>

		<summary type="html">&lt;p&gt;Created page with &amp;quot;&amp;#039;&amp;#039;&amp;#039;Bitcoin API call list (as of version 0.3.20.2) with code samples and returned values.&amp;#039;&amp;#039;&amp;#039;  == API Calls ==  API Calls to JSON-RPC are sent using POST method and parameters a...&amp;quot;&lt;/p&gt;
&lt;p&gt;&lt;b&gt;New page&lt;/b&gt;&lt;/p&gt;&lt;div&gt;'''Bitcoin API call list (as of version 0.3.20.2) with code samples and returned values.'''&lt;br /&gt;
&lt;br /&gt;
== API Calls ==&lt;br /&gt;
&lt;br /&gt;
API Calls to JSON-RPC are sent using POST method and parameters are sent as JSON object.&lt;br /&gt;
&lt;br /&gt;
=== Example Request ===&lt;br /&gt;
When requesting something from the JSON-RPC server the request is sent to the server with the following URL: &amp;lt;tt&amp;gt;http://user:pass@localhost:8332/&amp;lt;/tt&amp;gt; with post data that looks something like this:&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&amp;quot;method&amp;quot;:&amp;quot;listreceivedbyaccount&amp;quot;,&amp;quot;params&amp;quot;:[0],&amp;quot;id&amp;quot;:&amp;quot;listreceivedbyaccount&amp;quot;}:&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
The Bitcoind server uses JSON notation instead of using regular POST parameters which can cause confusions sometime. Note the trailing colon on the post data above.&lt;br /&gt;
&lt;br /&gt;
The JSON object that is being sent to the server is composed of 3 elements: &amp;lt;tt&amp;gt;method&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;params&amp;lt;/tt&amp;gt;, and &amp;lt;tt&amp;gt;id&amp;lt;/tt&amp;gt;.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;&amp;lt;tt&amp;gt;method&amp;lt;/tt&amp;gt;&amp;lt;/strong&amp;gt; is what method you want to invoke, this is a simple string representing the method you're invoking.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;&amp;lt;tt&amp;gt;params&amp;lt;/tt&amp;gt;&amp;lt;/strong&amp;gt; is the &amp;lt;strong&amp;gt;&amp;lt;tt&amp;gt;Array&amp;lt;/tt&amp;gt;&amp;lt;/strong&amp;gt; parameters that you're sending with the method invocation. Note that these parameters are sent as an &amp;lt;tt&amp;gt;Array&amp;lt;/tt&amp;gt; notation and not &amp;lt;tt&amp;gt;Object&amp;lt;/tt&amp;gt; notation.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;strong&amp;gt;&amp;lt;tt&amp;gt;id&amp;lt;/tt&amp;gt;&amp;lt;/strong&amp;gt; is used by the app requesting, and I usually just send the method name as the ID&lt;br /&gt;
&lt;br /&gt;
== Calls List ==&lt;br /&gt;
&lt;br /&gt;
Required arguments are denoted inside &amp;lt; and &amp;gt; Optional arguments are inside [ and ].&lt;br /&gt;
&lt;br /&gt;
=== backupwallet ===&lt;br /&gt;
&lt;br /&gt;
Safely copies wallet.dat to destination, which can be a directory or a path with filename.&lt;br /&gt;
&lt;br /&gt;
==== Arguments ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[0]&amp;lt;/tt&amp;gt; &amp;lt;strong&amp;gt;&amp;lt;Destination&amp;gt;&amp;lt;/strong&amp;gt; &amp;lt;tt&amp;gt;String&amp;lt;/tt&amp;gt; The destination of the wallet file it will be copied to. This needs to be a valid &amp;lt;tt&amp;gt;directory&amp;lt;/tt&amp;gt; in your file system passed in linux style (forward slashes (&amp;lt;tt&amp;gt;/&amp;lt;/tt&amp;gt;) as separators - linux style, not backward slashes (&amp;lt;tt&amp;gt;\&amp;lt;/tt&amp;gt;) - windows style). The directory &amp;lt;strong&amp;gt;must not have a file named &amp;lt;tt&amp;gt;wallet.dat&amp;lt;/tt&amp;gt;&amp;lt;/strong&amp;gt; otherwise the operation will fail. Example: &amp;lt;tt&amp;gt;&amp;quot;d:/wallet-backup/&amp;quot;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Example Request ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&amp;quot;method&amp;quot;:&amp;quot;backupwallet&amp;quot;,&amp;quot;params&amp;quot;:[&amp;quot;d:/wallet-backup/&amp;quot;],&amp;quot;id&amp;quot;:&amp;quot;backupwallet&amp;quot;}:&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Result ====&lt;br /&gt;
&lt;br /&gt;
===== Success =====&lt;br /&gt;
&amp;lt;tt&amp;gt;result&amp;lt;/tt&amp;gt; = &amp;lt;tt&amp;gt;null&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: null,&lt;br /&gt;
    &amp;quot;error&amp;quot;: null,&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;backupwallet&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Error =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: null,&lt;br /&gt;
    &amp;quot;error&amp;quot;: {&lt;br /&gt;
        &amp;quot;code&amp;quot;: -1,&lt;br /&gt;
        &amp;quot;message&amp;quot;: &amp;quot;boost::filesystem::copy_file: The file exists: \&amp;quot;C:\\Users\\Eli\\AppData\\Roaming\\Bitcoin\\testnet\\wallet.dat\&amp;quot;, \&amp;quot;d:\\wallet-backup\\wallet.dat\&amp;quot;&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;backupwallet&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
There are other errors that can occur, for example if the directory provided is incorrect.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== getaccount ===&lt;br /&gt;
&lt;br /&gt;
Returns the account associated with the given address.&lt;br /&gt;
&lt;br /&gt;
==== Arguments ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[0]&amp;lt;/tt&amp;gt; &amp;lt;strong&amp;gt;&amp;lt;Bitcoin Address&amp;gt;&amp;lt;/strong&amp;gt; &amp;lt;tt&amp;gt;String&amp;lt;/tt&amp;gt; The address being checked. Example: &amp;lt;tt&amp;gt;&amp;quot;n3CoNg6qBkJauJq5558PrfEHJd8f1emkQZ&amp;lt;/tt&amp;gt;&amp;quot; (note that this a &amp;lt;tt&amp;gt;testnet&amp;lt;/tt&amp;gt; address), &amp;lt;tt&amp;gt;&amp;quot;&amp;quot;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Example Request ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&amp;quot;method&amp;quot;:&amp;quot;getaccount&amp;quot;,&amp;quot;params&amp;quot;:[&amp;quot;n3CoNg6qBkJauJq5558PrfEHJd8f1emkQZ&amp;quot;],&amp;quot;id&amp;quot;:&amp;quot;getaccount&amp;quot;}:&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Result ====&lt;br /&gt;
&amp;lt;tt&amp;gt;result&amp;lt;/tt&amp;gt; = &amp;lt;tt&amp;gt;String&amp;lt;/tt&amp;gt; the account that the address is associated with.&lt;br /&gt;
&lt;br /&gt;
Note that some addresses in a bitcoin wallet are not associated with any given account and in those cases the &amp;lt;tt&amp;gt;result&amp;lt;/tt&amp;gt; will be an empty string (i.e. the global account).&lt;br /&gt;
&lt;br /&gt;
===== Success =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;Testnet Faucet&amp;quot;,&lt;br /&gt;
    &amp;quot;error&amp;quot;: null,&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;getaccount&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Error =====&lt;br /&gt;
The only time that this method returns an error is when the first argument (&amp;lt;tt&amp;gt;[0]&amp;lt;/tt&amp;gt; &amp;lt;strong&amp;gt;Bitcoin Address&amp;lt;/strong&amp;gt;) is not supplied. &amp;lt;ins&amp;gt;In any other case the method will return a successful result&amp;lt;/ins&amp;gt; with an empty &amp;lt;tt&amp;gt;&amp;quot;result&amp;quot;&amp;lt;/tt&amp;gt; value indicating that the address belongs to the global account, &amp;lt;ins&amp;gt;even if no address supplied&amp;lt;/ins&amp;gt; (i.e. empty string: &amp;lt;tt&amp;gt;&amp;quot;&amp;quot;&amp;lt;/tt&amp;gt;) or a bad address altogether (i.e. &amp;lt;tt&amp;gt;&amp;quot;eli&amp;quot;&amp;lt;/tt&amp;gt;).&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: null,&lt;br /&gt;
    &amp;quot;error&amp;quot;: {&lt;br /&gt;
        &amp;quot;code&amp;quot;: -1,&lt;br /&gt;
        &amp;quot;message&amp;quot;: &amp;quot;getaccount &amp;lt;bitcoinaddress&amp;gt;\nReturns the account associated with the given address.&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;getaccount&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== getaccountaddress ===&lt;br /&gt;
&lt;br /&gt;
Returns the current bitcoin address for receiving payments to this account.&lt;br /&gt;
&lt;br /&gt;
==== Arguments ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[0]&amp;lt;/tt&amp;gt; &amp;lt;strong&amp;gt;&amp;lt;Account&amp;gt;&amp;lt;/strong&amp;gt; &amp;lt;tt&amp;gt;String&amp;lt;/tt&amp;gt; The account that you want to get an address for. An empty string is considered as the &amp;lt;tt&amp;gt;global&amp;lt;/tt&amp;gt; account and will return a valid address. Example: &amp;lt;tt&amp;gt;&amp;quot;Testnet Faucet&amp;quot;&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;&amp;quot;&amp;quot;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Example Request ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&amp;quot;method&amp;quot;:&amp;quot;getaccountaddress&amp;quot;,&amp;quot;params&amp;quot;:[&amp;quot;Testnet Faucet&amp;quot;],&amp;quot;id&amp;quot;:&amp;quot;getaccountaddress&amp;quot;}:&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Result ====&lt;br /&gt;
&lt;br /&gt;
===== Success =====&lt;br /&gt;
&amp;lt;tt&amp;gt;result&amp;lt;/tt&amp;gt; = &amp;lt;tt&amp;gt;String&amp;lt;/tt&amp;gt; an address associated with this account.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: &amp;quot;mpFrRfLZRWCKzG2VmmxajJLcGpchsYiFQo&amp;quot;,&lt;br /&gt;
    &amp;quot;error&amp;quot;: null,&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;getaccountaddress&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Error =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: null,&lt;br /&gt;
    &amp;quot;error&amp;quot;: {&lt;br /&gt;
        &amp;quot;code&amp;quot;: -1,&lt;br /&gt;
        &amp;quot;message&amp;quot;: &amp;quot;getaccountaddress &amp;lt;account&amp;gt;\nReturns the current bitcoin address for receiving payments to this account.&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;getaccountaddress&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This error is only returned if no arguments supplied at all (not even an empty string).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== getaddressesbyaccount ===&lt;br /&gt;
&lt;br /&gt;
Returns the list of addresses for the given account.&lt;br /&gt;
&lt;br /&gt;
==== Arguments ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[0]&amp;lt;/tt&amp;gt; &amp;lt;strong&amp;gt;&amp;lt;Account&amp;gt;&amp;lt;/strong&amp;gt; &amp;lt;tt&amp;gt;String&amp;lt;/tt&amp;gt; The account that you want to get addresses for. An empty string is considered as the &amp;lt;tt&amp;gt;global&amp;lt;/tt&amp;gt; account and will return a valid address. Example: &amp;lt;tt&amp;gt;&amp;quot;Testnet Faucet&amp;quot;&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;&amp;quot;&amp;quot;&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Example Request ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&amp;quot;method&amp;quot;:&amp;quot;getaddressesbyaccount&amp;quot;,&amp;quot;params&amp;quot;:[&amp;quot;Testnet Faucet&amp;quot;],&amp;quot;id&amp;quot;:&amp;quot;getaddressesbyaccount&amp;quot;}:&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Result ====&lt;br /&gt;
&lt;br /&gt;
===== Success =====&lt;br /&gt;
&amp;lt;tt&amp;gt;result&amp;lt;/tt&amp;gt; = &amp;lt;tt&amp;gt;Array&amp;lt;/tt&amp;gt; An array of addresses associated with the account.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: [&lt;br /&gt;
        &amp;quot;mpFrRfLZRWCKzG2VmmxajJLcGpchsYiFQo&amp;quot;,&lt;br /&gt;
        &amp;quot;mv97croRs1krPoTXsfoSnxT7YhUn4zECUs&amp;quot;&lt;br /&gt;
    ],&lt;br /&gt;
    &amp;quot;error&amp;quot;: null,&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;getaddressesbyaccount&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Error =====&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: null,&lt;br /&gt;
    &amp;quot;error&amp;quot;: {&lt;br /&gt;
        &amp;quot;code&amp;quot;: -1,&lt;br /&gt;
        &amp;quot;message&amp;quot;: &amp;quot;getaddressesbyaccount &amp;lt;account&amp;gt;\nReturns the list of addresses for the given account.&amp;quot;&lt;br /&gt;
    },&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;getaddressesbyaccount&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
This error is only returned if no arguments supplied at all (not even an empty string).&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
=== getbalance ===&lt;br /&gt;
&lt;br /&gt;
If [Account] is not specified, returns the server's total available balance. If [Account] is specified, returns the balance in the account.&lt;br /&gt;
&lt;br /&gt;
==== Arguments ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[0]&amp;lt;/tt&amp;gt; &amp;lt;strong&amp;gt;[Account]&amp;lt;/strong&amp;gt; &amp;lt;tt&amp;gt;String&amp;lt;/tt&amp;gt; The account that you want to balance. An empty string is considered as the &amp;lt;tt&amp;gt;global&amp;lt;/tt&amp;gt; account and will return a the balance of the &amp;lt;tt&amp;gt;global&amp;lt;/tt&amp;gt; account. A &amp;lt;tt&amp;gt;null&amp;lt;/tt&amp;gt; value will return the entire balance available for the server. Example: &amp;lt;tt&amp;gt;&amp;quot;Testnet Faucet&amp;quot;&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;&amp;quot;&amp;quot;&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;null&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[1]&amp;lt;/tt&amp;gt; &amp;lt;strong&amp;gt;[Minimum Confirmations]&amp;lt;/strong&amp;gt; &amp;lt;tt&amp;gt;Integer&amp;lt;/tt&amp;gt; The minimum confirmations you want to consider when requesting balance. Default value is &amp;lt;tt&amp;gt;1&amp;lt;/tt&amp;gt;. If &amp;lt;tt&amp;gt;0&amp;lt;/tt&amp;gt; is supplied even unconfirmed transactions will be considered and will show in the balance. Example: &amp;lt;tt&amp;gt;1&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;0&amp;lt;/tt&amp;gt;, &amp;lt;tt&amp;gt;null&amp;lt;/tt&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Example Request ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&amp;quot;method&amp;quot;:&amp;quot;getbalance&amp;quot;,&amp;quot;params&amp;quot;:[],&amp;quot;id&amp;quot;:&amp;quot;getbalance&amp;quot;}:&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Result ====&lt;br /&gt;
&lt;br /&gt;
===== Success =====&lt;br /&gt;
&amp;lt;tt&amp;gt;result&amp;lt;/tt&amp;gt; = &amp;lt;tt&amp;gt;Float&amp;lt;/tt&amp;gt; A float representing the balance that the &amp;lt;tt&amp;gt;account&amp;lt;/tt&amp;gt; or the &amp;lt;tt&amp;gt;server&amp;lt;/tt&amp;gt; has to it's disposal.&lt;br /&gt;
&lt;br /&gt;
&amp;lt;syntaxhighlight lang=&amp;quot;javascript&amp;quot;&amp;gt;{&lt;br /&gt;
    &amp;quot;result&amp;quot;: 256.4985,&lt;br /&gt;
    &amp;quot;error&amp;quot;: null,&lt;br /&gt;
    &amp;quot;id&amp;quot;: &amp;quot;getbalance&amp;quot;&lt;br /&gt;
}&amp;lt;/syntaxhighlight&amp;gt;&lt;br /&gt;
&lt;br /&gt;
===== Error =====&lt;br /&gt;
No error should be returned with this method.&lt;br /&gt;
&lt;br /&gt;
=== getblockbycount ===&lt;br /&gt;
&lt;br /&gt;
Dumps the block existing at specified height. &amp;lt;strong&amp;gt;Note: this is not available in the official release&amp;lt;/strong&amp;gt;&lt;br /&gt;
&lt;br /&gt;
==== Arguments ====&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tt&amp;gt;[0]&amp;lt;/tt&amp;gt; &amp;lt;strong&amp;gt;Height&amp;lt;/strong&amp;gt;&lt;br /&gt;
==See Also on BitcoinWiki==&lt;br /&gt;
* [[Pundi X]]&lt;br /&gt;
* [[Vic coin]]&lt;br /&gt;
* [[Unode]]&lt;br /&gt;
* [[Superdistribution]]&lt;br /&gt;
* [[Tulip Overlay]]&lt;/div&gt;</summary>
		<author><name>Admin</name></author>
		
	</entry>
</feed>