josie
josie
Trying to use the snowflake connector results in an error due to dependency conflicts. When building the image, you get the following errors: ``` ERROR: requests-oauthlib 1.3.0 has requirement oauthlib>=3.0.0,...
In help from `bitcoind -h` it specifes that `conf` can only be used from the commandline. However, if `conf` is set in a `bitcoin.conf` file, there is no error and...
Inputs file has 785 columns: column 0 as the label, 1-784 as the features. When parsing the inputs, the array starts from index 0 so the label is included as...
https://github.com/sausheong/gonn/blob/4b54f092d28a06f6c906e519693d4643b259471b/main.go#L68 Hey @sausheong , looks like you are including your label in your input (column 0) and missing your last input column (column 784 in the file, if counting up...
## Motivation The primary motivation for this PR is to enable `FundTransaction` to take a vector of `CRecipient` objects to allow passing BIP352 silent payment addresses to RPCs that use...
This PR is part of integrating silent payments into Bitcoin Core. The project is tracked in https://github.com/bitcoin/bitcoin/issues/28536 Based on https://github.com/bitcoin-core/secp256k1/pull/1519 ## Pre-work / Refactors The first three commits are pre-work...
This issue will be updated to reflect the current state of [BIP352](https://github.com/bitcoin/bips/blob/master/bip-0352.mediawiki) integration. PRs ready for review: * https://github.com/bitcoin-core/secp256k1/pull/1519 Overall plan: * Pre-work / Refactors - [x] https://github.com/bitcoin/bitcoin/pull/28244 - [x]...
This PR is part of integrating silent payments into Bitcoin Core. Status and tracking for the project is managed in https://github.com/bitcoin/bitcoin/issues/28536 This PR depends on #28122 and is marked as...
Silent payments is a static address protocol for Bitcoin, originally proposed on the mailing list here: https://lists.linuxfoundation.org/pipermail/bitcoin-dev/2022-March/020180.html Since then, the proposal has received several rounds of review and has a...
This PR adds a new Silent Payments ([BIP352](https://github.com/bitcoin/bips/pull/1458)) module to secp256k1. It is a continuation of the work started in https://github.com/bitcoin-core/secp256k1/pull/1471. The module implements the full protocol, except for transaction...