mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-06-06 06:06:49 +00:00

* [NOD-340] Remove GetNetworkHashPS cmd * [NOD-340] Removed unimplemented commands: estimatePriority, getChainTips, invalidateBlock, preciousBlock, reconsiderBlock * [NOD-340] Apply gofmt
76 lines
2.1 KiB
Go
76 lines
2.1 KiB
Go
package rpc
|
|
|
|
import (
|
|
"fmt"
|
|
|
|
"github.com/kaspanet/kaspad/btcjson"
|
|
"github.com/kaspanet/kaspad/util/daghash"
|
|
)
|
|
|
|
// handleRescanBlocks implements the rescanBlocks command extension for
|
|
// websocket connections.
|
|
//
|
|
// NOTE: This extension is ported from github.com/decred/dcrd
|
|
func handleRescanBlocks(wsc *wsClient, icmd interface{}) (interface{}, error) {
|
|
cmd, ok := icmd.(*btcjson.RescanBlocksCmd)
|
|
if !ok {
|
|
return nil, btcjson.ErrRPCInternal
|
|
}
|
|
|
|
// Load client's transaction filter. Must exist in order to continue.
|
|
wsc.Lock()
|
|
filter := wsc.filterData
|
|
wsc.Unlock()
|
|
if filter == nil {
|
|
return nil, &btcjson.RPCError{
|
|
Code: btcjson.ErrRPCMisc,
|
|
Message: "Transaction filter must be loaded before rescanning",
|
|
}
|
|
}
|
|
|
|
blockHashes := make([]*daghash.Hash, len(cmd.BlockHashes))
|
|
|
|
for i := range cmd.BlockHashes {
|
|
hash, err := daghash.NewHashFromStr(cmd.BlockHashes[i])
|
|
if err != nil {
|
|
return nil, err
|
|
}
|
|
blockHashes[i] = hash
|
|
}
|
|
|
|
discoveredData := make([]btcjson.RescannedBlock, 0, len(blockHashes))
|
|
|
|
// Iterate over each block in the request and rescan. When a block
|
|
// contains relevant transactions, add it to the response.
|
|
bc := wsc.server.cfg.DAG
|
|
params := wsc.server.cfg.DAGParams
|
|
var lastBlockHash *daghash.Hash
|
|
for i := range blockHashes {
|
|
block, err := bc.BlockByHash(blockHashes[i])
|
|
if err != nil {
|
|
return nil, &btcjson.RPCError{
|
|
Code: btcjson.ErrRPCBlockNotFound,
|
|
Message: "Failed to fetch block: " + err.Error(),
|
|
}
|
|
}
|
|
if lastBlockHash != nil && !block.MsgBlock().Header.ParentHashes[0].IsEqual(lastBlockHash) { // TODO: (Stas) This is likely wrong. Modified to satisfy compilation.
|
|
return nil, &btcjson.RPCError{
|
|
Code: btcjson.ErrRPCInvalidParameter,
|
|
Message: fmt.Sprintf("Block %s is not a child of %s",
|
|
blockHashes[i], lastBlockHash),
|
|
}
|
|
}
|
|
lastBlockHash = blockHashes[i]
|
|
|
|
transactions := rescanBlockFilter(filter, block, params)
|
|
if len(transactions) != 0 {
|
|
discoveredData = append(discoveredData, btcjson.RescannedBlock{
|
|
Hash: cmd.BlockHashes[i],
|
|
Transactions: transactions,
|
|
})
|
|
}
|
|
}
|
|
|
|
return &discoveredData, nil
|
|
}
|