From 1893b1db0e519a8b0e25382b042cc67564cd4384 Mon Sep 17 00:00:00 2001 From: eordano Date: Tue, 24 Feb 2015 17:19:11 -0300 Subject: [PATCH] Fix capitalization of bitcore on docs --- docs/transaction.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/transaction.md b/docs/transaction.md index c7efa6c..fb098f6 100644 --- a/docs/transaction.md +++ b/docs/transaction.md @@ -149,7 +149,7 @@ There are a series of methods used for serialization: ## Serialization Checks -When serializing, the Bitcore library performs a series of checks. These can be disabled by providing an object to the `serialize` method with the checks that you'll like to skip. +When serializing, the bitcore library performs a series of checks. These can be disabled by providing an object to the `serialize` method with the checks that you'll like to skip. * `disableLargeFees` avoids checking that the fee is no more than `Transaction.FEE_PER_KB * Transaction.FEE_SECURITY_MARGIN * size_in_kb`. * `disableSmallFees` avoids checking that the fee is less than `Transaction.FEE_PER_KB * size_in_kb / Transaction.FEE_SECURITY_MARGIN`. @@ -157,7 +157,7 @@ When serializing, the Bitcore library performs a series of checks. These can be * `disableDustOutputs` does not check for dust outputs being generated * `disableMoreOutputThanInput` avoids checking that the sum of the output amounts is less than or equal to the sum of the amounts for the outputs being spent in the transaction -These are the current default values in the Bitcore library involved on these checks: +These are the current default values in the bitcore library involved on these checks: * `Transaction.FEE_PER_KB`: `10000` (satoshis per kilobyte) * `Transaction.FEE_SECURITY_MARGIN`: `15`