Remove BatchSigned

SubstrateBlock's provision of the most recently acknowledged block has
equivalent information with the same latency. Accordingly, there's no need for
it.
This commit is contained in:
Luke Parker
2023-04-17 20:16:58 -04:00
parent e26b861d25
commit 5a499de4ca
7 changed files with 89 additions and 67 deletions

View File

@@ -115,7 +115,7 @@ pub async fn test_wallet<C: Coin>(coin: C) {
// Check the Scanner DB can reload the outputs
assert_eq!(
scanner.ack_up_to_block(key, block.id()).await,
scanner.ack_up_to_block(key, block.id()).await.1,
[first_outputs, outputs].concat().to_vec()
);
}