GetUtxo fixed.
This commit is contained in:
parent
b549587296
commit
7c23cf13b3
2 changed files with 24 additions and 26 deletions
|
@ -563,20 +563,20 @@ func (s *ChainService) GetUtxo(options ...RescanOption) (*wire.TxOut, error) {
|
|||
Index], nil
|
||||
}
|
||||
}
|
||||
// Otherwise, iterate backwards until we've gone too
|
||||
// far.
|
||||
curStamp.Height--
|
||||
if curStamp.Height < ro.startBlock.Height {
|
||||
return nil, fmt.Errorf("Couldn't find "+
|
||||
"transaction %s",
|
||||
ro.watchOutPoints[0].Hash)
|
||||
}
|
||||
header, err := s.GetBlockByHeight(
|
||||
uint32(curStamp.Height))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
curStamp.Hash = header.BlockHash()
|
||||
}
|
||||
// Otherwise, iterate backwards until we've gone too
|
||||
// far.
|
||||
curStamp.Height--
|
||||
if curStamp.Height < ro.startBlock.Height {
|
||||
return nil, fmt.Errorf("Couldn't find "+
|
||||
"transaction %s",
|
||||
ro.watchOutPoints[0].Hash)
|
||||
}
|
||||
header, err := s.GetBlockByHeight(
|
||||
uint32(curStamp.Height))
|
||||
if err != nil {
|
||||
return nil, err
|
||||
}
|
||||
curStamp.Hash = header.BlockHash()
|
||||
}
|
||||
}
|
||||
|
|
|
@ -635,6 +635,16 @@ func TestSetup(t *testing.T) {
|
|||
}
|
||||
}
|
||||
|
||||
// Check and make sure the previous UTXO is now spent.
|
||||
_, err = svc.GetUtxo(
|
||||
spvchain.WatchOutPoints(ourOutPoint),
|
||||
spvchain.StartBlock(&waddrmgr.BlockStamp{Height: 801}),
|
||||
)
|
||||
if err.Error() != fmt.Sprintf("OutPoint %s has been spent",
|
||||
ourOutPoint) {
|
||||
t.Fatalf("UTXO %s not seen as spent: %s", ourOutPoint, err)
|
||||
}
|
||||
|
||||
// Generate 5 blocks on h2 and wait for ChainService to sync to the
|
||||
// newly-best chain on h2.
|
||||
_, err = h2.Node.Generate(5)
|
||||
|
@ -672,18 +682,6 @@ func TestSetup(t *testing.T) {
|
|||
t.Fatalf("Rescan event logs incorrect.\nWant: %s\nGot: %s\n",
|
||||
wantLog, gotLog)
|
||||
}
|
||||
|
||||
// Check and make sure the previous UTXO is now spent.
|
||||
// TODO: Uncomment this (right now it causes a deadlock.)
|
||||
/*_, err = svc.GetUtxo(
|
||||
spvchain.WatchOutPoints(ourOutPoint),
|
||||
spvchain.StartBlock(&waddrmgr.BlockStamp{Height: 801}),
|
||||
)
|
||||
if err.Error() != fmt.Sprintf("OutPoint %s has been spent",
|
||||
ourOutPoint) {
|
||||
t.Fatalf("UTXO %s not seen as spent: %s", ourOutPoint, err)
|
||||
}*/
|
||||
|
||||
}
|
||||
|
||||
// csd does a connect-sync-disconnect between nodes in order to support
|
||||
|
|
Loading…
Add table
Reference in a new issue