forked from TrueCloudLab/neoneo-go
mpt: change MaxKeyLength for LeafNode
This commit is contained in:
parent
7f038bd465
commit
8c358aa556
1 changed files with 2 additions and 1 deletions
|
@ -6,12 +6,13 @@ import (
|
||||||
"errors"
|
"errors"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
|
||||||
|
"github.com/nspcc-dev/neo-go/pkg/core/storage"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/io"
|
"github.com/nspcc-dev/neo-go/pkg/io"
|
||||||
"github.com/nspcc-dev/neo-go/pkg/util"
|
"github.com/nspcc-dev/neo-go/pkg/util"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MaxKeyLength is the max length of the extension node key.
|
// MaxKeyLength is the max length of the extension node key.
|
||||||
const MaxKeyLength = 1125
|
const MaxKeyLength = (storage.MaxStorageKeyLen + 4) * 2
|
||||||
|
|
||||||
// ExtensionNode represents MPT's extension node.
|
// ExtensionNode represents MPT's extension node.
|
||||||
type ExtensionNode struct {
|
type ExtensionNode struct {
|
||||||
|
|
Loading…
Reference in a new issue