Esenbek Kydyr uulu
Esenbek Kydyr uulu
SegWit related code must be extracted from BitcoinCore to BitcoinKit
Currently, transactions are sorted by timestamp, then order. This sometimes leads to case when transaction included in higher block is returned next to the transaction included in lower block. Because...
- Check blocks header's bloom bits and if it matches token events, request state proof and validate it - Call following delegate methods if needed: IBlockchainDelegate#onUpdateErc20(balance: String, contractAddress: String) IBlockchainDelegate#onUpdateErc20(syncState:...
The algorithm is described in https://github.com/ethereum/wiki/wiki/Ethash
Signed bitwise shift doesn't work. Example: ``` Int(65764) >> 16 // gives 1 Int(-65764) >> 16 // gives -2 BigInt(65764) >> 16 // gives -1 BigInt(-65764) >> 16 // gives...
If a node is not synced it starts sending blockhashes starting from first block of the chain (instead of sending next blocks after given blockhash locators). This sometimes leads to...