Anirudha Bose
Anirudha Bose
We want a function in `components/json/rs/src/lib.rs` with the following signature: ```rs pub fn convert_all_uint64_to_string(json: &str) -> String ``` It should be able to convert any u64 number in the json...
### What is wrong? #383 was recently merged, bringing a generic transaction executor to be used as mixin in different VM state classes, thereby allowing us to achieve better code...
### Motivation There are two main motivations of this issue: * **Primary:** be able to introduce breaking changes to packages without doing a `MAJOR` semver bump to btcd. * **Long...
This is useful for people running bitcoind locally on their machine. Also consider using `rpcauth`. The rationale for `rpcauth`: https://twitter.com/nvk/status/1306982094636232712
It may be possible to run satstack with a pruned chain state, which can significantly reduce the disk usage to just a few GBs. The downside is that historical transactions...
If RPC credentials are not found in the config file, try locating the `bitcoin.conf` in standard paths, and read it from there. See related issue: #35.
### Background It is not hard to envision a future where households run full nodes that are shared by the entire family. With Ledger Live Desktop (LLD), the family members...
This is supported: `Foo.objects.filter().order_by('-foo')` whereas, this is not: `Foo.objects.filter().values('email', 'foo').order_by('-foo')`
Django-style many-to-many relationships is a highly desirable feature. There might be some refactoring involved in `reobject.manager.Manager`. ```py3 class Publication(models.Model): def __init__(self, title): self.title = title ``` ```py3 class Article(Model): def...