mirror of
https://github.com/kaspanet/kaspad.git
synced 2025-03-30 15:08:33 +00:00

* [NOD-1130] Delete rpcadapters.go. * [NOD-1130] Delete p2p. Move rpc to top level. * [NOD-1130] Remove DAGParams from rpcserverConfig. * [NOD-1130] Remove rpcserverPeer, rpcserverConnManager, rpcserverSyncManager, and rpcserverConfig. * [NOD-1130] Remove wallet RPC commands. * [NOD-1130] Remove wallet RPC commands. * [NOD-1130] Remove connmgr and peer. * [NOD-1130] Move rpcmodel into rpc. * [NOD-1130] Implement ConnectionCount. * [NOD-1130] Remove ping and node RPC commands. * [NOD-1130] Dummify handleGetNetTotals. * [NOD-1130] Add NetConnection to Peer. * [NOD-1130] Fix merge errors. * [NOD-1130] Implement Peers. * [NOD-1130] Fix HandleGetConnectedPeerInfo. * [NOD-1130] Fix SendRawTransaction. * [NOD-1130] Rename addManualNode to connect and removeManualNode to disconnect. * [NOD-1130] Add a stub for AddBlock. * [NOD-1130] Fix tests. * [NOD-1130] Replace half-baked contents of RemoveConnection with a stub. * [NOD-1130] Fix merge errors. * [NOD-1130] Make golint happy. * [NOD-1130] Get rid of something weird. * [NOD-1130] Rename minerClient back to client. * [NOD-1130] Add a few fields to GetConnectedPeerInfoResult. * [NOD-1130] Rename oneTry to isPermanent. * [NOD-1130] Implement ConnectionCount in NetAdapter. * [NOD-1130] Move RawMempoolVerbose out of mempool. * [NOD-1130] Move isSynced into the mining package. * [NOD-1130] Fix a compilation error. * [NOD-1130] Make golint happy. * [NOD-1130] Fix merge errors.
73 lines
2.0 KiB
Go
73 lines
2.0 KiB
Go
package rpc
|
|
|
|
import (
|
|
"fmt"
|
|
"github.com/kaspanet/kaspad/rpc/model"
|
|
"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.(*model.RescanBlocksCmd)
|
|
if !ok {
|
|
return nil, model.ErrRPCInternal
|
|
}
|
|
|
|
// Load client's transaction filter. Must exist in order to continue.
|
|
filter := wsc.FilterData()
|
|
if filter == nil {
|
|
return nil, &model.RPCError{
|
|
Code: model.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([]model.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.dag
|
|
params := wsc.server.dag.Params
|
|
var lastBlockHash *daghash.Hash
|
|
for i := range blockHashes {
|
|
block, err := bc.BlockByHash(blockHashes[i])
|
|
if err != nil {
|
|
return nil, &model.RPCError{
|
|
Code: model.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, &model.RPCError{
|
|
Code: model.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, model.RescannedBlock{
|
|
Hash: cmd.BlockHashes[i],
|
|
Transactions: transactions,
|
|
})
|
|
}
|
|
}
|
|
|
|
return &discoveredData, nil
|
|
}
|