From fbec9bf69fb76eb5255b96da866f2735762d3449 Mon Sep 17 00:00:00 2001 From: Martin Boehm Date: Tue, 30 Jan 2018 09:45:06 +0100 Subject: [PATCH] Add code documentation --- bitcoin/bitcoinwire.go | 3 +++ 1 file changed, 3 insertions(+) diff --git a/bitcoin/bitcoinwire.go b/bitcoin/bitcoinwire.go index 4b674c56..9bc99050 100644 --- a/bitcoin/bitcoinwire.go +++ b/bitcoin/bitcoinwire.go @@ -11,6 +11,9 @@ import ( "github.com/btcsuite/btcd/wire" ) +// GetChainParams contains network parameters for the main Bitcoin network, +// the regression test Bitcoin network, the test Bitcoin network and +// the simulation test Bitcoin network, in this order func GetChainParams() []*chaincfg.Params { return []*chaincfg.Params{ &chaincfg.MainNetParams,