This website requires JavaScript.
Explore
RingTools-web
Help
Sign In
mirrors
/
lnd
Watch
1
Star
0
Fork
0
You've already forked lnd
mirror of
https://github.com/lightningnetwork/lnd.git
synced
2024-11-19 18:10:34 +01:00
Code
Issues
Projects
Releases
Wiki
Activity
031dbd7760
lnd
/
kvdb
/
etcd
/
debug.go
10 lines
104 B
Go
Raw
Normal View
History
Unescape
Escape
multi: add golang 1.17 compatible build tags With go 1.17 a change to the build flags was implemented: https://go.googlesource.com/proposal/+/master/design/draft-gobuild.md The formatter now automatically adds the forward-compatible build tag format and the linter checks for them, so we need to include them in our code.
2021-08-23 10:35:48 +02:00
//go:build dev
etcd: remove assertion when creating bucket and value with the same key This commit removes an assertion which is not needed because with etcd we can safely create keys and values with the same key since they are stored under different keys in the DB. This saves us one unnecessary Get on every Put.
2021-06-16 16:56:38 +02:00
// +build dev
package
etcd
const
(
// Switch on extra debug code.
etcdDebug
=
true
)
Reference in New Issue
Copy Permalink