From 813e1b19e9a56eadf7ff0b4c72cd114086d4f1a4 Mon Sep 17 00:00:00 2001 From: Josh Rickmar Date: Tue, 20 May 2014 20:09:33 -0500 Subject: [PATCH] go fmt. --- txstore/doc.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/txstore/doc.go b/txstore/doc.go index dafa697..5fc6f3e 100644 --- a/txstore/doc.go +++ b/txstore/doc.go @@ -1,12 +1,12 @@ /* - * Copyright (c) 2013, 2014 Conformal Systems LLC + * Copyright (c) 2013, 2014 Conformal Systems LLC * * Permission to use, copy, modify, and distribute this software for any - * purpose with or without fee is hereby granted, provided that the above + * purpose with or without fee is hereby granted, provided that the above * copyright notice and this permission notice appear in all copies. - * + * * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES - * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF + * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN @@ -22,14 +22,14 @@ // transaction output, and finally to provide a means to serialize the // entire data structure to an io.Writer and deserialize from an io.Reader // (both of which are usually an os.File). -// +// // Transaction outputs which are spendable by wallet keys are called // credits (because they credit to a wallet's total spendable balance) // and are modeled using the Credit structure. Transaction inputs which // spend previously-inserted credits are called debits (because they debit // from the wallet's spendable balance) and are modeled using the Debit // structure. -// +// // Besides just saving transactions, bidirectional spend tracking is also // performed on each credit and debit. Unlike packages such as btcdb, // which only mark whether a transaction output is spent or unspent, this