mirror of
https://github.com/aljazceru/breez-lnd.git
synced 2026-02-22 06:54:20 +01:00
etcd: allow readwrite bucket Delete with nil key (bbolt compatibility)
This commit is contained in:
@@ -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
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user