Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion cmd/utils/flags.go
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ var (
}
TxLookupLimitFlag = cli.Uint64Flag{
Name: "txlookuplimit",
Usage: "Number of recent blocks to maintain transactions index for (default = about one year, 0 = entire chain)",
Usage: "Number of recent blocks to maintain transactions index for (default = about 56 days, 0 = entire chain)",
Value: ethconfig.Defaults.TxLookupLimit,
}
LightKDFFlag = cli.BoolFlag{
Expand Down
2 changes: 1 addition & 1 deletion consensus/bor/merkle.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ func convertTo32(input []byte) (output [32]byte, err error) {
return
}

func convert(input []([32]byte)) [][]byte {
func convert(input [][32]byte) [][]byte {
var output [][]byte
for _, in := range input {
newInput := make([]byte, len(in[:]))
Expand Down