mirror of
https://github.com/nspcc-dev/neo-go.git
synced 2024-11-23 13:38:35 +00:00
mpt: increase max leaf value length
This commit is contained in:
parent
f0c222b385
commit
6e836d325e
1 changed files with 2 additions and 1 deletions
|
@ -5,12 +5,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"
|
||||||
)
|
)
|
||||||
|
|
||||||
// MaxValueLength is a max length of a leaf node value.
|
// MaxValueLength is a max length of a leaf node value.
|
||||||
const MaxValueLength = 1024 * 1024
|
const MaxValueLength = 3 + storage.MaxStorageValueLen + 1
|
||||||
|
|
||||||
// LeafNode represents MPT's leaf node.
|
// LeafNode represents MPT's leaf node.
|
||||||
type LeafNode struct {
|
type LeafNode struct {
|
||||||
|
|
Loading…
Reference in a new issue