Make UtxoSet store (height, txo) pairs rather than just the raw txo
Will take some experimentation to see if this is what I want the API to be, if the memory usage is acceptable, etc. This will force a total reindex for wizards-wallet users. [breaking-change]
This commit is contained in:
parent
184721db61
commit
e0c9844ff2
|
@ -161,7 +161,7 @@ impl TxIn {
|
|||
index: uint) -> Result<(), TransactionError> {
|
||||
let txo = utxoset.get_utxo(self.prev_hash, self.prev_index);
|
||||
match txo {
|
||||
Some(txo) => {
|
||||
Some((_, txo)) => {
|
||||
let mut p2sh_stack = Vec::new();
|
||||
let mut p2sh_script = Script::new();
|
||||
|
||||
|
@ -242,7 +242,7 @@ impl Transaction {
|
|||
// Run through the input
|
||||
let txo = utxoset.get_utxo(input.prev_hash, input.prev_index);
|
||||
match txo {
|
||||
Some(txo) => {
|
||||
Some((_, txo)) => {
|
||||
let mut p2sh_stack = Vec::new();
|
||||
let mut p2sh_script = Script::new();
|
||||
|
||||
|
|
|
@ -59,8 +59,13 @@ pub enum UtxoSetError {
|
|||
InvalidTx(Sha256dHash, TransactionError),
|
||||
}
|
||||
|
||||
struct UtxoNode {
|
||||
/// Blockheight at which this UTXO appeared in the blockchain
|
||||
height: u32,
|
||||
/// Vector of outputs; None indicates a nonexistent or already spent output
|
||||
type UtxoNode = ThinVec<Option<TxOut>>;
|
||||
outputs: ThinVec<Option<TxOut>>
|
||||
}
|
||||
impl_consensus_encoding!(UtxoNode, height, outputs)
|
||||
|
||||
/// An iterator over UTXOs
|
||||
pub struct UtxoIterator<'a> {
|
||||
|
@ -70,16 +75,17 @@ pub struct UtxoIterator<'a> {
|
|||
tx_index: uint
|
||||
}
|
||||
|
||||
impl<'a> Iterator<(Sha256dHash, uint, &'a TxOut)> for UtxoIterator<'a> {
|
||||
fn next(&mut self) -> Option<(Sha256dHash, uint, &'a TxOut)> {
|
||||
impl<'a> Iterator<(Sha256dHash, uint, &'a TxOut, uint)> for UtxoIterator<'a> {
|
||||
fn next(&mut self) -> Option<(Sha256dHash, uint, &'a TxOut, uint)> {
|
||||
while self.current.is_some() {
|
||||
let current = self.current.unwrap();
|
||||
let current = &self.current.unwrap().outputs;
|
||||
while self.tx_index < current.len() {
|
||||
self.tx_index += 1;
|
||||
if unsafe { current.get(self.tx_index - 1) }.is_some() {
|
||||
return Some((self.current_key,
|
||||
self.tx_index,
|
||||
unsafe { current.get(self.tx_index - 1) }.as_ref().unwrap()));
|
||||
unsafe { current.get(self.tx_index - 1) }.as_ref().unwrap(),
|
||||
self.current.unwrap().height as uint));
|
||||
}
|
||||
}
|
||||
match self.tx_iter.next() {
|
||||
|
@ -100,7 +106,7 @@ pub struct UtxoSet {
|
|||
table: HashMap<Sha256dHash, UtxoNode, DumbHasher>,
|
||||
last_hash: Sha256dHash,
|
||||
// A circular buffer of deleted utxos, grouped by block
|
||||
spent_txos: Vec<Vec<((Sha256dHash, u32), TxOut)>>,
|
||||
spent_txos: Vec<Vec<((Sha256dHash, u32), (u32, TxOut))>>,
|
||||
// The last index into the above buffer that was assigned to
|
||||
spent_idx: u64,
|
||||
n_utxos: u64,
|
||||
|
@ -127,7 +133,7 @@ impl UtxoSet {
|
|||
}
|
||||
|
||||
/// Add all the UTXOs of a transaction to the set
|
||||
fn add_utxos(&mut self, tx: &Transaction) -> Option<UtxoNode> {
|
||||
fn add_utxos(&mut self, tx: &Transaction, height: u32) -> Option<UtxoNode> {
|
||||
let txid = tx.bitcoin_hash();
|
||||
// Locate node if it's already there
|
||||
let new_node = unsafe {
|
||||
|
@ -142,7 +148,7 @@ impl UtxoSet {
|
|||
new_node.init(vout as uint, Some(txo.clone()));
|
||||
}
|
||||
}
|
||||
new_node
|
||||
UtxoNode { outputs: new_node, height: height }
|
||||
};
|
||||
// Get the old value, if any (this is suprisingly possible, c.f. BIP30
|
||||
// and the other comments in this file referring to it)
|
||||
|
@ -154,9 +160,9 @@ impl UtxoSet {
|
|||
}
|
||||
|
||||
/// Remove a UTXO from the set and return it
|
||||
fn take_utxo(&mut self, txid: Sha256dHash, vout: u32) -> Option<TxOut> {
|
||||
fn take_utxo(&mut self, txid: Sha256dHash, vout: u32) -> Option<(u32, TxOut)> {
|
||||
// This whole function has awkward scoping thx to lexical borrow scoping :(
|
||||
let (ret, should_delete) = {
|
||||
let (height, ret, should_delete) = {
|
||||
// Locate the UTXO, failing if not found
|
||||
let node = match self.table.find_mut(&txid) {
|
||||
Some(node) => node,
|
||||
|
@ -165,13 +171,13 @@ impl UtxoSet {
|
|||
|
||||
let ret = {
|
||||
// Check that this specific output is there
|
||||
if vout as uint >= node.len() { return None; }
|
||||
let replace = unsafe { node.get_mut(vout as uint) };
|
||||
if vout as uint >= node.outputs.len() { return None; }
|
||||
let replace = unsafe { node.outputs.get_mut(vout as uint) };
|
||||
replace.take()
|
||||
};
|
||||
|
||||
let should_delete = node.iter().filter(|slot| slot.is_some()).count() == 0;
|
||||
(ret, should_delete)
|
||||
let should_delete = node.outputs.iter().filter(|slot| slot.is_some()).count() == 0;
|
||||
(node.height, ret, should_delete)
|
||||
};
|
||||
|
||||
// Delete the whole node if it is no longer being used
|
||||
|
@ -180,24 +186,24 @@ impl UtxoSet {
|
|||
}
|
||||
|
||||
self.n_utxos -= if ret.is_some() { 1 } else { 0 };
|
||||
ret
|
||||
ret.map(|o| (height, o))
|
||||
}
|
||||
|
||||
/// Get a reference to a UTXO in the set
|
||||
pub fn get_utxo<'a>(&'a self, txid: Sha256dHash, vout: u32) -> Option<&'a TxOut> {
|
||||
pub fn get_utxo<'a>(&'a self, txid: Sha256dHash, vout: u32) -> Option<(uint, &'a TxOut)> {
|
||||
// Locate the UTXO, failing if not found
|
||||
let node = match self.table.find(&txid) {
|
||||
Some(node) => node,
|
||||
None => return None
|
||||
};
|
||||
// Check that this specific output is there
|
||||
if vout as uint >= node.len() { return None; }
|
||||
let replace = unsafe { node.get(vout as uint) };
|
||||
replace.as_ref()
|
||||
if vout as uint >= node.outputs.len() { return None; }
|
||||
let replace = unsafe { node.outputs.get(vout as uint) };
|
||||
Some((node.height as uint, replace.as_ref().unwrap()))
|
||||
}
|
||||
|
||||
/// Apply the transactions contained in a block
|
||||
pub fn update(&mut self, block: &Block, validation: ValidationLevel)
|
||||
pub fn update(&mut self, block: &Block, blockheight: uint, validation: ValidationLevel)
|
||||
-> Result<(), UtxoSetError> {
|
||||
// Make sure we are extending the UTXO set in order
|
||||
if validation >= ChainValidation &&
|
||||
|
@ -223,7 +229,7 @@ impl UtxoSet {
|
|||
// is invalid, -except- for two historic blocks which appeared in the
|
||||
// blockchain before the dupes were noticed.
|
||||
// See bitcoind commit `ab91bf39` and BIP30.
|
||||
match self.add_utxos(tx) {
|
||||
match self.add_utxos(tx, blockheight as u32) {
|
||||
Some(mut replace) => {
|
||||
let blockhash = block.header.bitcoin_hash().be_hex_string();
|
||||
if blockhash == "00000000000a4d0a398161ffc163c503763b1f4360639393e0e4c8e300e0caec".to_string() ||
|
||||
|
@ -233,10 +239,10 @@ impl UtxoSet {
|
|||
} else {
|
||||
// Otherwise put the replaced txouts into the `deleted` cache
|
||||
// so that rewind will put them back.
|
||||
self.spent_txos.get_mut(spent_idx).reserve_additional(replace.len());
|
||||
for (n, input) in replace.mut_iter().enumerate() {
|
||||
self.spent_txos.get_mut(spent_idx).reserve_additional(replace.outputs.len());
|
||||
for (n, input) in replace.outputs.mut_iter().enumerate() {
|
||||
match input.take() {
|
||||
Some(txo) => { self.spent_txos.get_mut(spent_idx).push(((txid, n as u32), txo)); }
|
||||
Some(txo) => { self.spent_txos.get_mut(spent_idx).push(((txid, n as u32), (replace.height, txo))); }
|
||||
None => {}
|
||||
}
|
||||
}
|
||||
|
@ -343,22 +349,22 @@ impl UtxoSet {
|
|||
if skipped_genesis {
|
||||
let mut extract_vec = vec![];
|
||||
mem::swap(&mut extract_vec, self.spent_txos.get_mut(self.spent_idx as uint));
|
||||
for ((txid, n), txo) in extract_vec.move_iter() {
|
||||
for ((txid, n), (height, txo)) in extract_vec.move_iter() {
|
||||
// Remove the tx's utxo list and patch the txo into place
|
||||
let new_node =
|
||||
match self.table.pop(&txid) {
|
||||
Some(mut thinvec) => {
|
||||
let old_len = thinvec.len() as u32;
|
||||
Some(mut node) => {
|
||||
let old_len = node.outputs.len() as u32;
|
||||
if old_len < n + 1 {
|
||||
unsafe {
|
||||
thinvec.reserve(n + 1);
|
||||
node.outputs.reserve(n + 1);
|
||||
for i in range(old_len, n + 1) {
|
||||
thinvec.init(i as uint, None);
|
||||
node.outputs.init(i as uint, None);
|
||||
}
|
||||
}
|
||||
}
|
||||
unsafe { *thinvec.get_mut(n as uint) = Some(txo); }
|
||||
thinvec
|
||||
unsafe { *node.outputs.get_mut(n as uint) = Some(txo); }
|
||||
node
|
||||
}
|
||||
None => {
|
||||
unsafe {
|
||||
|
@ -367,7 +373,7 @@ impl UtxoSet {
|
|||
thinvec.init(i as uint, None);
|
||||
}
|
||||
thinvec.init(n as uint, Some(txo));
|
||||
thinvec
|
||||
UtxoNode { outputs: thinvec, height: height }
|
||||
}
|
||||
}
|
||||
};
|
||||
|
@ -441,11 +447,11 @@ mod tests {
|
|||
let new_block: Block = deserialize("010000004ddccd549d28f385ab457e98d1b11ce80bfea2c5ab93015ade4973e400000000bf4473e53794beae34e64fccc471dace6ae544180816f89591894e0f417a914cd74d6e49ffff001d323b3a7b0201000000010000000000000000000000000000000000000000000000000000000000000000ffffffff0804ffff001d026e04ffffffff0100f2052a0100000043410446ef0102d1ec5240f0d061a4246c1bdef63fc3dbab7733052fbbf0ecd8f41fc26bf049ebb4f9527f374280259e7cfa99c48b0e3f39c51347a19a5819651503a5ac00000000010000000321f75f3139a013f50f315b23b0c9a2b6eac31e2bec98e5891c924664889942260000000049483045022100cb2c6b346a978ab8c61b18b5e9397755cbd17d6eb2fe0083ef32e067fa6c785a02206ce44e613f31d9a6b0517e46f3db1576e9812cc98d159bfdaf759a5014081b5c01ffffffff79cda0945903627c3da1f85fc95d0b8ee3e76ae0cfdc9a65d09744b1f8fc85430000000049483045022047957cdd957cfd0becd642f6b84d82f49b6cb4c51a91f49246908af7c3cfdf4a022100e96b46621f1bffcf5ea5982f88cef651e9354f5791602369bf5a82a6cd61a62501fffffffffe09f5fe3ffbf5ee97a54eb5e5069e9da6b4856ee86fc52938c2f979b0f38e82000000004847304402204165be9a4cbab8049e1af9723b96199bfd3e85f44c6b4c0177e3962686b26073022028f638da23fc003760861ad481ead4099312c60030d4cb57820ce4d33812a5ce01ffffffff01009d966b01000000434104ea1feff861b51fe3f5f8a3b12d0f4712db80e919548a80839fc47c6a21e66d957e9c5d8cd108c7a2d2324bad71f9904ac0ae7336507d785b17a2c115e427a32fac00000000".from_hex().unwrap()).unwrap();
|
||||
|
||||
// Make sure we can't add the block directly, since we are missing the inputs
|
||||
assert!(empty_set.update(&new_block, TxoValidation).is_err());
|
||||
assert!(empty_set.update(&new_block, 1, TxoValidation).is_err());
|
||||
assert_eq!(empty_set.n_utxos(), 0);
|
||||
// Add the block manually so that we'll have some UTXOs for the rest of the test
|
||||
for tx in new_block.txdata.iter() {
|
||||
empty_set.add_utxos(tx);
|
||||
empty_set.add_utxos(tx, 1);
|
||||
}
|
||||
empty_set.last_hash = new_block.header.bitcoin_hash();
|
||||
|
||||
|
@ -455,19 +461,19 @@ mod tests {
|
|||
let hash = tx.bitcoin_hash();
|
||||
for (n, out) in tx.output.iter().enumerate() {
|
||||
let n = n as u32;
|
||||
assert_eq!(empty_set.get_utxo(hash, n), Some(&out.clone()));
|
||||
assert_eq!(empty_set.get_utxo(hash, n), Some((1, &out.clone())));
|
||||
}
|
||||
}
|
||||
|
||||
// Check again that we can't add the block, and that this doesn't mess up the
|
||||
// existing UTXOs
|
||||
assert!(empty_set.update(&new_block, TxoValidation).is_err());
|
||||
assert!(empty_set.update(&new_block, 2, TxoValidation).is_err());
|
||||
assert_eq!(empty_set.n_utxos(), 2);
|
||||
for tx in new_block.txdata.iter() {
|
||||
let hash = tx.bitcoin_hash();
|
||||
for (n, out) in tx.output.iter().enumerate() {
|
||||
let n = n as u32;
|
||||
assert_eq!(empty_set.get_utxo(hash, n), Some(&out.clone()));
|
||||
assert_eq!(empty_set.get_utxo(hash, n), Some((1, &out.clone())));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -488,7 +494,7 @@ mod tests {
|
|||
assert_eq!(read_set.take_utxo(hash, 100 + n), None);
|
||||
// Check take of real UTXO
|
||||
let ret = read_set.take_utxo(hash, n);
|
||||
assert_eq!(ret, Some(out.clone()));
|
||||
assert_eq!(ret, Some((1, out.clone())));
|
||||
// Try double-take
|
||||
assert_eq!(read_set.take_utxo(hash, n), None);
|
||||
}
|
||||
|
|
|
@ -32,7 +32,7 @@ use util::hash::Sha256dHash;
|
|||
/// An address index
|
||||
#[deriving(Clone, PartialEq, Eq, Show)]
|
||||
pub struct AddressIndex {
|
||||
index: HashMap<Script, Vec<(Sha256dHash, uint, TxOut)>>,
|
||||
index: HashMap<Script, Vec<(Sha256dHash, uint, TxOut, uint)>>,
|
||||
network: Network,
|
||||
k1: u64,
|
||||
k2: u64
|
||||
|
@ -49,11 +49,11 @@ impl AddressIndex {
|
|||
k1: k1,
|
||||
k2: k2
|
||||
};
|
||||
for (key, idx, txo) in utxo_set.iter() {
|
||||
for (key, idx, txo, height) in utxo_set.iter() {
|
||||
if ret.admissible_txo(txo) {
|
||||
ret.index.insert_or_update_with(txo.script_pubkey.clone(),
|
||||
vec![(key, idx, txo.clone())],
|
||||
|_, v| v.push((key, idx, txo.clone())));
|
||||
vec![(key, idx, txo.clone(), height)],
|
||||
|_, v| v.push((key, idx, txo.clone(), height)));
|
||||
}
|
||||
}
|
||||
ret
|
||||
|
@ -77,7 +77,7 @@ impl AddressIndex {
|
|||
/// Lookup a txout by its scriptpubkey. Returns a slice because there
|
||||
/// may be more than one for any given scriptpubkey.
|
||||
#[inline]
|
||||
pub fn find_by_script<'a>(&'a self, pubkey: &Script) -> &'a [(Sha256dHash, uint, TxOut)] {
|
||||
pub fn find_by_script<'a>(&'a self, pubkey: &Script) -> &'a [(Sha256dHash, uint, TxOut, uint)] {
|
||||
self.index.find(pubkey).map(|v| v.as_slice()).unwrap_or(&[])
|
||||
}
|
||||
}
|
||||
|
|
|
@ -273,7 +273,7 @@ impl Wallet {
|
|||
let sk = try!(master.ckd_priv(cnum).map_err(Bip32Error));
|
||||
let pk = ExtendedPubKey::from_private(&sk);
|
||||
let addr = Address::from_key(pk.network, &pk.public_key);
|
||||
for &(_, _, ref out) in index.find_by_script(&addr.script_pubkey()).iter() {
|
||||
for &(_, _, ref out, _) in index.find_by_script(&addr.script_pubkey()).iter() {
|
||||
ret += out.value;
|
||||
}
|
||||
}
|
||||
|
@ -285,7 +285,7 @@ impl Wallet {
|
|||
let sk = try!(master.ckd_priv(cnum).map_err(Bip32Error));
|
||||
let pk = ExtendedPubKey::from_private(&sk);
|
||||
let addr = Address::from_key(pk.network, &pk.public_key);
|
||||
for &(_, _, ref out) in index.find_by_script(&addr.script_pubkey()).iter() {
|
||||
for &(_, _, ref out, _) in index.find_by_script(&addr.script_pubkey()).iter() {
|
||||
ret += out.value;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue