diff options
Diffstat (limited to 'core/lattice-data.go')
-rw-r--r-- | core/lattice-data.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/lattice-data.go b/core/lattice-data.go index 998fb1f..8367539 100644 --- a/core/lattice-data.go +++ b/core/lattice-data.go @@ -55,7 +55,7 @@ type ErrAckingBlockNotExists struct { } func (e ErrAckingBlockNotExists) Error() string { - return fmt.Sprintf("acking block %s not exists", e.hash) + return fmt.Sprintf("acking block %s not exists", e.hash.String()[:6]) } // Errors for method usage |