Skip to content

Commit

Permalink
modify wave size
Browse files Browse the repository at this point in the history
  • Loading branch information
TATAUFO committed Mar 9, 2020
1 parent 4d714bf commit 62c1097
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion galaxy/wave.go
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ import (

// WaveSize is the number of bytes in a wave
// WaveHeaderSize 24 bytes + waveBody
const WaveSize = 2048
const WaveSize = 1048 * 64

// WaveHeaderSize is the number of bytes in a wave header
// command 12 bytes + length 4 bytes + checksum 4 bytes
Expand Down
2 changes: 1 addition & 1 deletion node/node.go
Original file line number Diff line number Diff line change
Expand Up @@ -523,7 +523,7 @@ func (n *Node) loadUniverse() (err error) {
return err
}
if i%displayInterval == 0 {
log.Info(i+1, "messages be loaded")
log.Info("message ", i+1, "be loaded", common.Hash2String(msg.ID()))
}
}
log.Info("All", msgCount, "messages already be loaded")
Expand Down

0 comments on commit 62c1097

Please sign in to comment.