mirror of
https://github.com/Qortal/altcoinj.git
synced 2025-02-11 17:55:53 +00:00
Refresh JavaDocs.
This commit is contained in:
parent
5e2e48eb5a
commit
c40b7ce668
@ -31,6 +31,8 @@ All Classes
|
||||
<BR>
|
||||
<A HREF="com/google/bitcoin/core/BlockChain.html" title="class in com.google.bitcoin.core" target="classFrame">BlockChain</A>
|
||||
<BR>
|
||||
<A HREF="com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples" target="classFrame">DumpWallet</A>
|
||||
<BR>
|
||||
<A HREF="com/google/bitcoin/core/ECKey.html" title="class in com.google.bitcoin.core" target="classFrame">ECKey</A>
|
||||
<BR>
|
||||
<A HREF="com/google/bitcoin/core/GetBlocksMessage.html" title="class in com.google.bitcoin.core" target="classFrame">GetBlocksMessage</A>
|
||||
|
@ -31,6 +31,8 @@ All Classes
|
||||
<BR>
|
||||
<A HREF="com/google/bitcoin/core/BlockChain.html" title="class in com.google.bitcoin.core">BlockChain</A>
|
||||
<BR>
|
||||
<A HREF="com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples">DumpWallet</A>
|
||||
<BR>
|
||||
<A HREF="com/google/bitcoin/core/ECKey.html" title="class in com.google.bitcoin.core">ECKey</A>
|
||||
<BR>
|
||||
<A HREF="com/google/bitcoin/core/GetBlocksMessage.html" title="class in com.google.bitcoin.core">GetBlocksMessage</A>
|
||||
|
@ -181,7 +181,7 @@ Represents an elliptic curve keypair that we own and can use for signing transac
|
||||
<TD><CODE><B><A HREF="../../../../com/google/bitcoin/core/ECKey.html#toAddress(com.google.bitcoin.core.NetworkParameters)">toAddress</A></B>(<A HREF="../../../../com/google/bitcoin/core/NetworkParameters.html" title="class in com.google.bitcoin.core">NetworkParameters</A> params)</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
Returns the address that corresponds to the public part of this ECKey.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
@ -301,7 +301,8 @@ getPubKey</H3>
|
||||
<PRE>
|
||||
public byte[] <B>getPubKey</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Gets the raw public key value.
|
||||
<DD>Gets the raw public key value. This appears in transaction scriptSigs. Note that this is <b>not</b> the same
|
||||
as the pubKeyHash/address.
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
@ -331,6 +332,9 @@ toAddress</H3>
|
||||
<PRE>
|
||||
public <A HREF="../../../../com/google/bitcoin/core/Address.html" title="class in com.google.bitcoin.core">Address</A> <B>toAddress</B>(<A HREF="../../../../com/google/bitcoin/core/NetworkParameters.html" title="class in com.google.bitcoin.core">NetworkParameters</A> params)</PRE>
|
||||
<DL>
|
||||
<DD>Returns the address that corresponds to the public part of this ECKey. Note that an address is derived from
|
||||
the RIPEMD-160 hash of the public key and is not the public key itself (which is too large to be convenient).
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
|
@ -99,6 +99,7 @@ java.lang.Object
|
||||
|
||||
<P>
|
||||
A collection of various utility methods that are helpful for working with the BitCoin protocol.
|
||||
To enable debug logging from the library, run with -Dbitcoinj.logging=true on your command line.
|
||||
<P>
|
||||
|
||||
<P>
|
||||
|
@ -125,7 +125,7 @@ java.lang.Object
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> int</CODE></FONT></TD>
|
||||
<CODE> long</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../com/google/bitcoin/core/VersionMessage.html#localServices">localServices</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
@ -134,10 +134,18 @@ java.lang.Object
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static int</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../com/google/bitcoin/core/VersionMessage.html#NODE_NETWORK">NODE_NETWORK</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
A services flag that denotes whether the peer has a copy of the block chain or not.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE>static int</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../com/google/bitcoin/core/VersionMessage.html#PROTOCOL_VERSION">PROTOCOL_VERSION</A></B></CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
The protocol version this library implements.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
@ -199,6 +207,15 @@ java.lang.Object
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> boolean</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../com/google/bitcoin/core/VersionMessage.html#hasBlockChain()">hasBlockChain</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
Returns true if the version message indicates the sender has a full copy of the block chain,
|
||||
or if it's running in client mode (only has the headers).</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> void</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../com/google/bitcoin/core/VersionMessage.html#parse()">parse</A></B>()</CODE>
|
||||
|
||||
@ -242,11 +259,25 @@ PROTOCOL_VERSION</H3>
|
||||
<PRE>
|
||||
public static final int <B>PROTOCOL_VERSION</B></PRE>
|
||||
<DL>
|
||||
<DD>The protocol version this library implements. A value of 31800 means 0.3.18.00.
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.google.bitcoin.core.VersionMessage.PROTOCOL_VERSION">Constant Field Values</A></DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="NODE_NETWORK"><!-- --></A><H3>
|
||||
NODE_NETWORK</H3>
|
||||
<PRE>
|
||||
public static final int <B>NODE_NETWORK</B></PRE>
|
||||
<DL>
|
||||
<DD>A services flag that denotes whether the peer has a copy of the block chain or not.
|
||||
<P>
|
||||
<DL>
|
||||
<DT><B>See Also:</B><DD><A HREF="../../../../constant-values.html#com.google.bitcoin.core.VersionMessage.NODE_NETWORK">Constant Field Values</A></DL>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="clientVersion"><!-- --></A><H3>
|
||||
clientVersion</H3>
|
||||
<PRE>
|
||||
@ -260,7 +291,7 @@ public int <B>clientVersion</B></PRE>
|
||||
<A NAME="localServices"><!-- --></A><H3>
|
||||
localServices</H3>
|
||||
<PRE>
|
||||
public int <B>localServices</B></PRE>
|
||||
public long <B>localServices</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
@ -352,6 +383,20 @@ public void <B>bitcoinSerializeToStream</B>(java.io.OutputStream buf)
|
||||
<DD><CODE>java.io.IOException</CODE></DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="hasBlockChain()"><!-- --></A><H3>
|
||||
hasBlockChain</H3>
|
||||
<PRE>
|
||||
public boolean <B>hasBlockChain</B>()</PRE>
|
||||
<DL>
|
||||
<DD>Returns true if the version message indicates the sender has a full copy of the block chain,
|
||||
or if it's running in client mode (only has the headers).
|
||||
<P>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
@ -233,6 +233,14 @@ A Wallet stores keys and a record of transactions that have not yet been spent.
|
||||
<BR>
|
||||
Sends coins to the given address, via the given <A HREF="../../../../com/google/bitcoin/core/Peer.html" title="class in com.google.bitcoin.core"><CODE>Peer</CODE></A>.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD ALIGN="right" VALIGN="top" WIDTH="1%"><FONT SIZE="-1">
|
||||
<CODE> java.lang.String</CODE></FONT></TD>
|
||||
<TD><CODE><B><A HREF="../../../../com/google/bitcoin/core/Wallet.html#toString()">toString</A></B>()</CODE>
|
||||
|
||||
<BR>
|
||||
</TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
<A NAME="methods_inherited_from_class_java.lang.Object"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
@ -240,7 +248,7 @@ A Wallet stores keys and a record of transactions that have not yet been spent.
|
||||
<TH ALIGN="left"><B>Methods inherited from class java.lang.Object</B></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait</CODE></TD>
|
||||
<TD><CODE>clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait</CODE></TD>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
@ -451,6 +459,20 @@ public java.math.BigInteger <B>getBalance</B>()</PRE>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<HR>
|
||||
|
||||
<A NAME="toString()"><!-- --></A><H3>
|
||||
toString</H3>
|
||||
<PRE>
|
||||
public java.lang.String <B>toString</B>()</PRE>
|
||||
<DL>
|
||||
<DD><DL>
|
||||
<DT><B>Overrides:</B><DD><CODE>toString</CODE> in class <CODE>java.lang.Object</CODE></DL>
|
||||
</DD>
|
||||
<DD><DL>
|
||||
</DL>
|
||||
</DD>
|
||||
</DL>
|
||||
<!-- ========= END OF CLASS DATA ========= -->
|
||||
<HR>
|
||||
|
||||
|
@ -52,7 +52,7 @@ function windowTitle()
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="../../../../com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../com/google/bitcoin/examples/PrivateKeys.html" title="class in com.google.bitcoin.examples"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?com/google/bitcoin/examples/PingService.html" target="_top"><B>FRAMES</B></A>
|
||||
@ -221,7 +221,7 @@ public static void <B>main</B>(java.lang.String[] args)
|
||||
|
||||
<TR>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
PREV CLASS
|
||||
<A HREF="../../../../com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples"><B>PREV CLASS</B></A>
|
||||
<A HREF="../../../../com/google/bitcoin/examples/PrivateKeys.html" title="class in com.google.bitcoin.examples"><B>NEXT CLASS</B></A></FONT></TD>
|
||||
<TD BGCOLOR="white" CLASS="NavBarCell2"><FONT SIZE="-2">
|
||||
<A HREF="../../../../index.html?com/google/bitcoin/examples/PingService.html" target="_top"><B>FRAMES</B></A>
|
||||
|
@ -21,6 +21,8 @@ com.google.bitcoin.examples
|
||||
Classes</FONT>
|
||||
<FONT CLASS="FrameItemFont">
|
||||
<BR>
|
||||
<A HREF="DumpWallet.html" title="class in com.google.bitcoin.examples" target="classFrame">DumpWallet</A>
|
||||
<BR>
|
||||
<A HREF="PingService.html" title="class in com.google.bitcoin.examples" target="classFrame">PingService</A>
|
||||
<BR>
|
||||
<A HREF="PrivateKeys.html" title="class in com.google.bitcoin.examples" target="classFrame">PrivateKeys</A></FONT></TD>
|
||||
|
@ -86,6 +86,10 @@ Package com.google.bitcoin.examples
|
||||
<B>Class Summary</B></FONT></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples">DumpWallet</A></B></TD>
|
||||
<TD>DumpWallet loads a serialized wallet and prints information about what it contains.</TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<TD WIDTH="15%"><B><A HREF="../../../../com/google/bitcoin/examples/PingService.html" title="class in com.google.bitcoin.examples">PingService</A></B></TD>
|
||||
<TD>PingService demonstrates basic usage of the library.</TD>
|
||||
</TR>
|
||||
|
@ -89,7 +89,7 @@ Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle">com.google.bitcoin.examples.<A HREF="../../../../com/google/bitcoin/examples/PingService.html" title="class in com.google.bitcoin.examples"><B>PingService</B></A><LI TYPE="circle">com.google.bitcoin.examples.<A HREF="../../../../com/google/bitcoin/examples/PrivateKeys.html" title="class in com.google.bitcoin.examples"><B>PrivateKeys</B></A></UL>
|
||||
<LI TYPE="circle">com.google.bitcoin.examples.<A HREF="../../../../com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples"><B>DumpWallet</B></A><LI TYPE="circle">com.google.bitcoin.examples.<A HREF="../../../../com/google/bitcoin/examples/PingService.html" title="class in com.google.bitcoin.examples"><B>PingService</B></A><LI TYPE="circle">com.google.bitcoin.examples.<A HREF="../../../../com/google/bitcoin/examples/PrivateKeys.html" title="class in com.google.bitcoin.examples"><B>PrivateKeys</B></A></UL>
|
||||
</UL>
|
||||
<HR>
|
||||
|
||||
|
@ -172,6 +172,12 @@ com.google.*</FONT></TH>
|
||||
<TH ALIGN="left" COLSPAN="3">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/VersionMessage.html" title="class in com.google.bitcoin.core">VersionMessage</A></TH>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<A NAME="com.google.bitcoin.core.VersionMessage.NODE_NETWORK"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||
<CODE>public static final int</CODE></FONT></TD>
|
||||
<TD ALIGN="left"><CODE><A HREF="com/google/bitcoin/core/VersionMessage.html#NODE_NETWORK">NODE_NETWORK</A></CODE></TD>
|
||||
<TD ALIGN="right"><CODE>1</CODE></TD>
|
||||
</TR>
|
||||
<TR BGCOLOR="white" CLASS="TableRowColor">
|
||||
<A NAME="com.google.bitcoin.core.VersionMessage.PROTOCOL_VERSION"><!-- --></A><TD ALIGN="right"><FONT SIZE="-1">
|
||||
<CODE>public static final int</CODE></FONT></TD>
|
||||
<TD ALIGN="left"><CODE><A HREF="com/google/bitcoin/core/VersionMessage.html#PROTOCOL_VERSION">PROTOCOL_VERSION</A></CODE></TD>
|
||||
|
@ -206,6 +206,9 @@ Static method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/cor
|
||||
<DT><A HREF="./com/google/bitcoin/core/Utils.html#doubleDigestTwoBuffers(byte[], int, int, byte[], int, int)"><B>doubleDigestTwoBuffers(byte[], int, int, byte[], int, int)</B></A> -
|
||||
Static method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Utils.html" title="class in com.google.bitcoin.core">Utils</A>
|
||||
<DD>Calculates SHA256(SHA256(byte range 1 + byte range 2)).
|
||||
<DT><A HREF="./com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples"><B>DumpWallet</B></A> - Class in <A HREF="./com/google/bitcoin/examples/package-summary.html">com.google.bitcoin.examples</A><DD>DumpWallet loads a serialized wallet and prints information about what it contains.<DT><A HREF="./com/google/bitcoin/examples/DumpWallet.html#DumpWallet()"><B>DumpWallet()</B></A> -
|
||||
Constructor for class com.google.bitcoin.examples.<A HREF="./com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples">DumpWallet</A>
|
||||
<DD>
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_E_"><!-- --></A><H2>
|
||||
@ -361,6 +364,10 @@ Method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Block
|
||||
<A NAME="_H_"><!-- --></A><H2>
|
||||
<B>H</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./com/google/bitcoin/core/VersionMessage.html#hasBlockChain()"><B>hasBlockChain()</B></A> -
|
||||
Method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/VersionMessage.html" title="class in com.google.bitcoin.core">VersionMessage</A>
|
||||
<DD>Returns true if the version message indicates the sender has a full copy of the block chain,
|
||||
or if it's running in client mode (only has the headers).
|
||||
<DT><A HREF="./com/google/bitcoin/core/InventoryItem.html#hash"><B>hash</B></A> -
|
||||
Variable in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/InventoryItem.html" title="class in com.google.bitcoin.core">InventoryItem</A>
|
||||
<DD>
|
||||
@ -441,6 +448,9 @@ Variable in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Ver
|
||||
<A NAME="_M_"><!-- --></A><H2>
|
||||
<B>M</B></H2>
|
||||
<DL>
|
||||
<DT><A HREF="./com/google/bitcoin/examples/DumpWallet.html#main(java.lang.String[])"><B>main(String[])</B></A> -
|
||||
Static method in class com.google.bitcoin.examples.<A HREF="./com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples">DumpWallet</A>
|
||||
<DD>
|
||||
<DT><A HREF="./com/google/bitcoin/examples/PingService.html#main(java.lang.String[])"><B>main(String[])</B></A> -
|
||||
Static method in class com.google.bitcoin.examples.<A HREF="./com/google/bitcoin/examples/PingService.html" title="class in com.google.bitcoin.examples">PingService</A>
|
||||
<DD>
|
||||
@ -465,6 +475,9 @@ Constructor for class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core
|
||||
<DT><A HREF="./com/google/bitcoin/core/NetworkParameters.html" title="class in com.google.bitcoin.core"><B>NetworkParameters</B></A> - Class in <A HREF="./com/google/bitcoin/core/package-summary.html">com.google.bitcoin.core</A><DD>NetworkParameters contains the data needed for working with an instantiation of a BitCoin chain.<DT><A HREF="./com/google/bitcoin/core/NetworkParameters.html#NetworkParameters()"><B>NetworkParameters()</B></A> -
|
||||
Constructor for class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/NetworkParameters.html" title="class in com.google.bitcoin.core">NetworkParameters</A>
|
||||
<DD>
|
||||
<DT><A HREF="./com/google/bitcoin/core/VersionMessage.html#NODE_NETWORK"><B>NODE_NETWORK</B></A> -
|
||||
Static variable in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/VersionMessage.html" title="class in com.google.bitcoin.core">VersionMessage</A>
|
||||
<DD>A services flag that denotes whether the peer has a copy of the block chain or not.
|
||||
</DL>
|
||||
<HR>
|
||||
<A NAME="_O_"><!-- --></A><H2>
|
||||
@ -560,7 +573,7 @@ Variable in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Net
|
||||
<DD>What the easiest allowable proof of work should be.
|
||||
<DT><A HREF="./com/google/bitcoin/core/VersionMessage.html#PROTOCOL_VERSION"><B>PROTOCOL_VERSION</B></A> -
|
||||
Static variable in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/VersionMessage.html" title="class in com.google.bitcoin.core">VersionMessage</A>
|
||||
<DD>
|
||||
<DD>The protocol version this library implements.
|
||||
<DT><A HREF="./com/google/bitcoin/core/ProtocolException.html" title="class in com.google.bitcoin.core"><B>ProtocolException</B></A> - Exception in <A HREF="./com/google/bitcoin/core/package-summary.html">com.google.bitcoin.core</A><DD> <DT><A HREF="./com/google/bitcoin/core/ProtocolException.html#ProtocolException(java.lang.String)"><B>ProtocolException(String)</B></A> -
|
||||
Constructor for exception com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/ProtocolException.html" title="class in com.google.bitcoin.core">ProtocolException</A>
|
||||
<DD>
|
||||
@ -662,7 +675,7 @@ Variable in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Ver
|
||||
<DD>
|
||||
<DT><A HREF="./com/google/bitcoin/core/ECKey.html#toAddress(com.google.bitcoin.core.NetworkParameters)"><B>toAddress(NetworkParameters)</B></A> -
|
||||
Method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/ECKey.html" title="class in com.google.bitcoin.core">ECKey</A>
|
||||
<DD>
|
||||
<DD>Returns the address that corresponds to the public part of this ECKey.
|
||||
<DT><A HREF="./com/google/bitcoin/core/Utils.html#toNanoCoins(int, int)"><B>toNanoCoins(int, int)</B></A> -
|
||||
Static method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Utils.html" title="class in com.google.bitcoin.core">Utils</A>
|
||||
<DD>Convert an amount expressed in the way humans are used to into nanocoins.
|
||||
@ -705,6 +718,9 @@ Method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Trans
|
||||
<DT><A HREF="./com/google/bitcoin/core/UnknownMessage.html#toString()"><B>toString()</B></A> -
|
||||
Method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/UnknownMessage.html" title="class in com.google.bitcoin.core">UnknownMessage</A>
|
||||
<DD>
|
||||
<DT><A HREF="./com/google/bitcoin/core/Wallet.html#toString()"><B>toString()</B></A> -
|
||||
Method in class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Wallet.html" title="class in com.google.bitcoin.core">Wallet</A>
|
||||
<DD>
|
||||
<DT><A HREF="./com/google/bitcoin/core/Transaction.html" title="class in com.google.bitcoin.core"><B>Transaction</B></A> - Class in <A HREF="./com/google/bitcoin/core/package-summary.html">com.google.bitcoin.core</A><DD>A transaction represents the movement of coins from some addresses to some other addresses.<DT><A HREF="./com/google/bitcoin/core/Transaction.html#Transaction(com.google.bitcoin.core.NetworkParameters, byte[])"><B>Transaction(NetworkParameters, byte[])</B></A> -
|
||||
Constructor for class com.google.bitcoin.core.<A HREF="./com/google/bitcoin/core/Transaction.html" title="class in com.google.bitcoin.core">Transaction</A>
|
||||
<DD>Creates a transaction from the given serialized bytes, eg, from a block or a tx network message.
|
||||
|
@ -88,7 +88,7 @@ Class Hierarchy
|
||||
</H2>
|
||||
<UL>
|
||||
<LI TYPE="circle">java.lang.Object<UL>
|
||||
<LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/Address.html" title="class in com.google.bitcoin.core"><B>Address</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/Base58.html" title="class in com.google.bitcoin.core"><B>Base58</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/BlockChain.html" title="class in com.google.bitcoin.core"><B>BlockChain</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/ECKey.html" title="class in com.google.bitcoin.core"><B>ECKey</B></A> (implements java.io.Serializable)
|
||||
<LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/Address.html" title="class in com.google.bitcoin.core"><B>Address</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/Base58.html" title="class in com.google.bitcoin.core"><B>Base58</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/BlockChain.html" title="class in com.google.bitcoin.core"><B>BlockChain</B></A><LI TYPE="circle">com.google.bitcoin.examples.<A HREF="com/google/bitcoin/examples/DumpWallet.html" title="class in com.google.bitcoin.examples"><B>DumpWallet</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/ECKey.html" title="class in com.google.bitcoin.core"><B>ECKey</B></A> (implements java.io.Serializable)
|
||||
<LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/InventoryItem.html" title="class in com.google.bitcoin.core"><B>InventoryItem</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/Message.html" title="class in com.google.bitcoin.core"><B>Message</B></A> (implements java.io.Serializable)
|
||||
<UL>
|
||||
<LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/AddressMessage.html" title="class in com.google.bitcoin.core"><B>AddressMessage</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/Block.html" title="class in com.google.bitcoin.core"><B>Block</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/GetBlocksMessage.html" title="class in com.google.bitcoin.core"><B>GetBlocksMessage</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/GetDataMessage.html" title="class in com.google.bitcoin.core"><B>GetDataMessage</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/InventoryMessage.html" title="class in com.google.bitcoin.core"><B>InventoryMessage</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/PeerAddress.html" title="class in com.google.bitcoin.core"><B>PeerAddress</B></A><LI TYPE="circle">com.google.bitcoin.core.<A HREF="com/google/bitcoin/core/Transaction.html" title="class in com.google.bitcoin.core"><B>Transaction</B></A> (implements java.io.Serializable)
|
||||
|
@ -136,6 +136,9 @@ java.util.List<E> <B>addresses</B></PRE>
|
||||
</TR>
|
||||
</TABLE>
|
||||
|
||||
<P>
|
||||
<B>serialVersionUID: </B>2738848929966035281L
|
||||
|
||||
<P>
|
||||
<A NAME="serializedForm"><!-- --></A>
|
||||
<TABLE BORDER="1" WIDTH="100%" CELLPADDING="3" CELLSPACING="0" SUMMARY="">
|
||||
@ -791,7 +794,7 @@ int <B>clientVersion</B></PRE>
|
||||
<H3>
|
||||
localServices</H3>
|
||||
<PRE>
|
||||
int <B>localServices</B></PRE>
|
||||
long <B>localServices</B></PRE>
|
||||
<DL>
|
||||
<DL>
|
||||
</DL>
|
||||
|
Loading…
x
Reference in New Issue
Block a user