Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
no more errors here
  • Loading branch information
ngbatnicdotmil committed Feb 26, 2014
1 parent 45e898c commit a73956f
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -22,7 +22,7 @@
import java.math.RoundingMode;

/**
* a core Bitcoin Value representation, caputuring many domain specific aspects
* a core Bitcoin Value representation, capturing many domain specific aspects
* of it. introduced to reduce the ambiguity when dealing with double,
* BigInteger, long, or even worse, integer representations
*
Expand All @@ -46,7 +46,7 @@ public final class Bitcoins implements Serializable {
*
* @param output
* Object from BitcoiJ transaction
* @return a value prepresentation of a Bitcoin domain object
* @return a value pre-presentation of a Bitcoin domain object
*/
/*
* public static Bitcoins valueOf(TransactionOutput output) { return
Expand Down Expand Up @@ -103,7 +103,7 @@ private static long toLongExact(double origValue) {
// if (satoshis != (double) longSatoshis) {
// double error = longSatoshis - satoshis;
// throw new IllegalArgumentException("the given double value " + origValue
// + " was not convertable to a precise value." + " error: " + error +
// + " was not convertible to a precise value." + " error: " + error +
// " satoshis");
// }
// return longSatoshis;
Expand Down

0 comments on commit a73956f

Please sign in to comment.