Pierre Krieger
Pierre Krieger
There is an issue in Substrate master, but I don't think it concerns your branch: https://github.com/paritytech/polkadot-sdk/issues/533 The logs showing `Rejected` tends to indicate that the peer initiating the connection isn't...
The keep-alive timeout only starts after there is no activity on a connection anymore. It's the mechanism that we use to kill inactive connections. Each protocol decides what "no activity"...
> Should I open another issue about developer docs? The intention is good, but 95% of the Substrate code base lacks documentation on how to use it. I don't think...
> And since we mark the version info in exported function name(Or mark it in custom section, but I think the former design is better) IMO it's not necessary to...
What I mean is that the client never frees the memory it allocates, it's always the runtime that does that, so there's no need for the runtime to export this...
Whether it is hard or not is completely irrelevant. There exists a certain interface between the client and the runtime, and exporting `alloc` is about modifying this interface so that...
I'm very much against doing what the OP says. We don't want to introduce multiple flavors of metadata. This makes everything more complex. Our number one priority in everything we...
> This can just be done wherever you need to send this data to the signer. It just makes no sense to do this in the runtime. I just want...
I opened this issue from my phone. To elaborate a bit, the problem is that it is "cleaner" and more convenient to have only a single definition of a struct...
Additional remark: this is relevant only to samplers because only a certain number of samplers can be allocated at any given moment. The only other object type that has this...