Naviabheeman

Results 13 comments of Naviabheeman

In bitcoin the snapshot metadata contains base_blockhash and coins_count. In Tapyrus it would be necessary to store networkid and whether it is prod or dev mode. So these are the...

In PR #29612 from bitcoin-core ( Optimize serialization and enhance metadata of dumptxoutset output) utxo snapshot metadata is enhanced to include 1. version 2. network magic bytes 3. block height...

Sorry, last week I tried to build a builder container test version without realizing that the base was still ubuntu20! My mistake. Fixed it in #304 And while doing these...

For preventing mempool eviction of package transactions while the rest of the package is still being processed, we can the same behaviour as bitcoin. i.e allow the mempool to temporarily...

In Bitcoin descriptors is a big feature with a separate sqlite db. wallet can be configured to use sqlite and descriptors instead of leveldb and raw scripts. New RPCs like...

check.bitcoin [25077]( https://github.com/bitcoin/bitcoin/pull/25077)

Amounts in Tx description table are not token aware. adding it should fix all the transaction table errors. ` CAmount nCredit = wtx.getCredit(); CAmount nDebit = wtx.getDebit(); CAmount nNet =...

CCheckQueue and CMainSignals were updated as part of boost::thread to std::thread migration. CWallet and CBlockPolicyEstimator classes in Bitcoin are very different from our classes. So adding GUARDED_BY and EXCLUSIVE_LOCKS_REQUIRED caused...

#292 contains both testmempoolaccept and submitpackage RPCs. 1. The PR toes not change fee related behaviour. In bitcoin Package transactions are evaluated as one whole entity while checking for fee....