You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This PR adds Kubernetes manifests of bitcoin node and electrumx server.
The configuration is based on the V1's config:
https://github.com/keep-network/tbtc/tree/main/infrastructure/kube/keep-test
with some improvements.
For V1 we were running bcoin, now we switch to bitcoind, due to
bcoin-org/bcoin#1153
Bitcoind and Electrum servers are running in dedicated kubernetes
namespaces:
- for keep-test: `bitcoin-testnet`
- for keep-prd: `bitcoin`
We started with one replica for each server and after sync was done, we
created snapshots that were used for PVC creation for other replicas.
Closes: #3590
Bitcoin Core RPC API defines the result of
estimatesmartfee
method to return afeerate
property (see: https://developer.bitcoin.org/reference/rpc/estimatesmartfee.html#result).While Bcoin RPC API returns a
fee
property instead:bcoin/lib/node/rpc.js
Lines 2233 to 2236 in 92433b2
The
fee
property should be renamed tofeerate
to maintain compatibility across the clients.The text was updated successfully, but these errors were encountered: