Skip to content

Commit

Permalink
Fix: print 'reward' flag value as int. (#1544)
Browse files Browse the repository at this point in the history
  • Loading branch information
nickeskov authored Nov 18, 2024
1 parent 33ce958 commit 9905716
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cmd/node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ func (c *config) logParameters() {
zap.S().Debugf("build-state-hashes: %t", c.buildStateHashes)
zap.S().Debugf("bind-address: %s", c.bindAddress)
zap.S().Debugf("vote: %s", c.minerVoteFeatures)
zap.S().Debugf("reward: %s", c.reward)
zap.S().Debugf("reward: %d", c.reward)
zap.S().Debugf("obsolescence: %s", c.obsolescencePeriod)
zap.S().Debugf("disable-miner %t", c.disableMiner)
zap.S().Debugf("wallet-path: %s", c.walletPath)
Expand Down

0 comments on commit 9905716

Please sign in to comment.