mirror of
https://github.com/lightningnetwork/lnd.git
synced 2025-02-22 22:25:24 +01:00
etcd: allow readwrite bucket Delete with nil key (bbolt compatibility)
This commit is contained in:
parent
e8f47cf882
commit
adfd99ec08
1 changed files with 3 additions and 0 deletions
|
@ -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
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue