Skip to content

Commit

Permalink
Fix format errors
Browse files Browse the repository at this point in the history
  • Loading branch information
martinboehm committed Mar 6, 2019
1 parent 3df1cc8 commit 7033027
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions bchain/coins/bellcoin/bellcoinparser_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ func Test_PackTx(t *testing.T) {
name: "Bellcoin-1",
args: args{
tx: testTx1,
height: 205708,
height: 205708,
blockTime: 1549095010,
parser: NewBellcoinParser(GetChainParams("main"), &btc.Configuration{}),
},
Expand Down Expand Up @@ -304,7 +304,7 @@ func Test_UnpackTx(t *testing.T) {
parser: NewBellcoinParser(GetChainParams("main"), &btc.Configuration{}),
},
want: &testTx1,
want1: 205708,
want1: 205708,
wantErr: false,
},
}
Expand Down
2 changes: 1 addition & 1 deletion bchain/coins/blockchain.go
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ func init() {
BlockChainFactories["Zcoin"] = xzc.NewZcoinRPC
BlockChainFactories["Fujicoin"] = fujicoin.NewFujicoinRPC
BlockChainFactories["Flo"] = flo.NewFloRPC
BlockChainFactories["Bellcoin"] = bellcoin.NewBellcoinRPC
BlockChainFactories["Bellcoin"] = bellcoin.NewBellcoinRPC
}

// GetCoinNameFromConfig gets coin name and coin shortcut from config file
Expand Down

0 comments on commit 7033027

Please sign in to comment.