diff options
author | obscuren <geffobscura@gmail.com> | 2015-06-21 02:31:11 +0800 |
---|---|---|
committer | obscuren <geffobscura@gmail.com> | 2015-06-21 22:59:15 +0800 |
commit | c590b505ed92957baf2ab4baa1788c6b0ec862cc (patch) | |
tree | 473ddb052798c30a21c05abef4764bccf4ab4e0a /common/db.go | |
parent | 3deded28a50398b8ce108c72f27ea861c1bce178 (diff) | |
download | go-tangerine-c590b505ed92957baf2ab4baa1788c6b0ec862cc.tar.gz go-tangerine-c590b505ed92957baf2ab4baa1788c6b0ec862cc.tar.zst go-tangerine-c590b505ed92957baf2ab4baa1788c6b0ec862cc.zip |
core, ethdb, trie: validate database errors
Diffstat (limited to 'common/db.go')
-rw-r--r-- | common/db.go | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/common/db.go b/common/db.go index c12a2cfb0..7f3becd5a 100644 --- a/common/db.go +++ b/common/db.go @@ -2,7 +2,7 @@ package common // Database interface type Database interface { - Put(key []byte, value []byte) + Put(key []byte, value []byte) error Get(key []byte) ([]byte, error) Delete(key []byte) error Close() |