etcd: allow readwrite bucket Delete with nil key (bbolt compatibility)

This commit is contained in:
Andras Banki-Horvath
2020-10-26 14:08:12 +01:00
parent e8f47cf882
commit adfd99ec08

View File

@@ -290,6 +290,9 @@ func (b *readWriteBucket) Put(key, value []byte) error {
// Delete deletes the key/value pointed to by the passed key.
// Returns ErrKeyRequred if the passed key is empty.
func (b *readWriteBucket) Delete(key []byte) error {
if key == nil {
return nil
}
if len(key) == 0 {
return walletdb.ErrKeyRequired
}