Skip to content
#

protocol

Here are 1,648 public repositories matching this topic...

lbry-sdk
jblachly
jblachly commented Jun 28, 2021

Background

Macaroons are created after wallet creation. However, the documentation in the main installation (https://github.com/lightningnetwork/lnd/blob/master/docs/INSTALL.md) states the following:

Running lnd for the first time will by default generate the admin.macaroon, read_only.macaroon, and macaroons.db files that are used to authenticate into lnd.

As a first-time LND user,

nibanks
nibanks commented Jul 7, 2021

Describe the feature you'd like supported

We should change the CID after enough idle time so that any possible NAT rebinding would be harder to be tracked by an outside observer. The simplest way to implement this would be in the flush send code path. When first starting a flush, check how much time has elapsed since the last send. If it's greater than X (20? 30?) seconds force a CID update

ipfs-companion
unbeatable-101
unbeatable-101 commented Aug 5, 2021

Describe the bug
Any number of peers past 1000 gets cut of in the toolbar
To Reproduce
Steps to reproduce the behaviour:

  1. Connect to over 1000 peers (Enabling AcceleratedDHTClient and DHT server mode helps with that)
  2. Look at the extension icon

Expected behaviour
The number does not get cut off

Screenshots
<img width="32" alt="Screen Shot 2021-08-05 at 12 37 28"

dbreese
dbreese commented Jul 14, 2021

Take this class, for example:

`
import Foundation

// some comment has import SOMEBADTHING
public protocol TestProtocol: AnyObject {
func doSomething() -> Void
}
`

The generated mock ends up having:

... import SOMEBADTHING ...

Looks like it is looking for "{import .*}" in source files and just adding that verbatim to the output file, causing compile issues.

Improve this page

Add a description, image, and links to the protocol topic page so that developers can more easily learn about it.

Curate this topic

Add this topic to your repo

To associate your repository with the protocol topic, visit your repo's landing page and select "manage topics."

Learn more