Skip to content

Commit

Permalink
Made log messages begin with lower case
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaszslabon committed Dec 4, 2023
1 parent 434f057 commit 377050e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkg/tbtc/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -860,7 +860,7 @@ func (n *node) HandleMovingFundsProposal(sourceWalletPublicKeyHash [20]byte) {
)

targetWallets := liveWallets[0:targetWalletsCount]
logger.Infof("Target wallets length [%v]", len(targetWallets))
logger.Infof("target wallets length [%v]", len(targetWallets))

walletMemberIDs := make([]uint32, 0)
for _, operatorAddress := range sourceWallet.signingGroupOperators {
Expand Down Expand Up @@ -910,7 +910,7 @@ func (n *node) HandleMovingFundsProposal(sourceWalletPublicKeyHash [20]byte) {
}

logger.Infof(
"Finished moving funds commitment for wallet with PKH [0x%x]",
"finished moving funds commitment for wallet with PKH [0x%x]",
sourceWalletPublicKeyHash,
)

Expand Down

0 comments on commit 377050e

Please sign in to comment.