3
0
mirror of https://github.com/Qortal/altcoinj.git synced 2025-02-15 03:35:52 +00:00

Rename Coin.NANOCOIN to Coin.MICROCOIN.

This commit is contained in:
Andreas Schildbach 2014-06-02 08:10:18 +02:00
parent fa63c83888
commit 927d8514f5

View File

@ -52,7 +52,7 @@ public final class Coin implements Comparable<Coin>, Serializable {
/** /**
* 0.000001 Bitcoins, also known as 1 µBTC or 1 uBTC. * 0.000001 Bitcoins, also known as 1 µBTC or 1 uBTC.
*/ */
public static final Coin NANOCOIN = MILLICOIN.divide(1000); public static final Coin MICROCOIN = MILLICOIN.divide(1000);
/** /**
* A satoshi is the smallest unit that can be transferred. 100 million of them fit into a Bitcoin. * A satoshi is the smallest unit that can be transferred. 100 million of them fit into a Bitcoin.