Change the block connected and disconnected notifications to include the entire block header. Do not notify the previous block's regular tree transactions if the newly attached block voted to approve them. Instead, notify the regular transactions from the newly attached block. It is up to the client to check the vote bits in the header to decide how to handle the previous block's regular transactions. Every websocket client now has an associated transaction filter that is used to determine whether or not a processed transaction is (or might be) relevant to the client. A new RPC, loadtxfilter, has been added to load, reload, or add to this filter. Redo the entire rescan RPC to scan over previously-processed blocks using the same transaction filter (rather than specifying which addresses and outpoints to watch for in the rescan request). Fixes #433.
24 lines
708 B
Go
24 lines
708 B
Go
// Copyright (c) 2015 The btcsuite developers
|
|
// Copyright (c) 2015-2016 The Decred developers
|
|
// Use of this source code is governed by an ISC
|
|
// license that can be found in the LICENSE file.
|
|
|
|
package dcrjson
|
|
|
|
// SessionResult models the data from the session command.
|
|
type SessionResult struct {
|
|
SessionID uint64 `json:"sessionid"`
|
|
}
|
|
|
|
// RescanResult models the result object returned by the rescan RPC.
|
|
type RescanResult struct {
|
|
DiscoveredData []RescannedBlock `json:"discovereddata"`
|
|
}
|
|
|
|
// RescannedBlock contains the hash and all discovered transactions of a single
|
|
// rescanned block.
|
|
type RescannedBlock struct {
|
|
Hash string `json:"hash"`
|
|
Transactions []string `json:"transactions"`
|
|
}
|