diff options
author | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-12-01 19:28:26 +0800 |
---|---|---|
committer | Jeffrey Wilcke <jeffrey@ethereum.org> | 2015-12-01 19:28:26 +0800 |
commit | 96d86740a1d27d548cba4fffd22d3b85a6975c4d (patch) | |
tree | 2f1c94790089a9dff935e434d6985a8bd8ad1c44 /trie/errors.go | |
parent | 23031b1554a05817ac23f2ef0d4780e16f065663 (diff) | |
parent | 52904ae32f0a591e7dccad7827ff1c2a73c27026 (diff) | |
download | dexon-96d86740a1d27d548cba4fffd22d3b85a6975c4d.tar dexon-96d86740a1d27d548cba4fffd22d3b85a6975c4d.tar.gz dexon-96d86740a1d27d548cba4fffd22d3b85a6975c4d.tar.bz2 dexon-96d86740a1d27d548cba4fffd22d3b85a6975c4d.tar.lz dexon-96d86740a1d27d548cba4fffd22d3b85a6975c4d.tar.xz dexon-96d86740a1d27d548cba4fffd22d3b85a6975c4d.tar.zst dexon-96d86740a1d27d548cba4fffd22d3b85a6975c4d.zip |
Merge pull request #2005 from zsfelfoldi/light-trie
Trie error handling
Diffstat (limited to 'trie/errors.go')
-rw-r--r-- | trie/errors.go | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/trie/errors.go b/trie/errors.go new file mode 100644 index 000000000..a0f58f28f --- /dev/null +++ b/trie/errors.go @@ -0,0 +1,41 @@ +// Copyright 2014 The go-ethereum Authors +// This file is part of the go-ethereum library. +// +// The go-ethereum library is free software: you can redistribute it and/or modify +// it under the terms of the GNU Lesser General Public License as published by +// the Free Software Foundation, either version 3 of the License, or +// (at your option) any later version. +// +// The go-ethereum library is distributed in the hope that it will be useful, +// but WITHOUT ANY WARRANTY; without even the implied warranty of +// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +// GNU Lesser General Public License for more details. +// +// You should have received a copy of the GNU Lesser General Public License +// along with the go-ethereum library. If not, see <http://www.gnu.org/licenses/>. + +package trie + +import ( + "fmt" + + "github.com/ethereum/go-ethereum/common" +) + +// MissingNodeError is returned by the trie functions (TryGet, TryUpdate, TryDelete) +// in the case where a trie node is not present in the local database. Contains +// information necessary for retrieving the missing node through an ODR service. +// +// NodeHash is the hash of the missing node +// RootHash is the original root of the trie that contains the node +// KeyPrefix is the prefix that leads from the root to the missing node (hex encoded) +// KeySuffix (optional) contains the rest of the key we were looking for, gives a +// hint on which further nodes should also be retrieved (hex encoded) +type MissingNodeError struct { + RootHash, NodeHash common.Hash + KeyPrefix, KeySuffix []byte +} + +func (err *MissingNodeError) Error() string { + return fmt.Sprintf("Missing trie node %064x", err.NodeHash) +} |