mirror of
https://github.com/bitcoinj/bitcoinj.git
synced 2025-03-13 11:36:15 +01:00
TransactionBroadcastTest: always compare txId with a txId
This commit is contained in:
parent
24a94ec981
commit
a480bc3281
1 changed files with 1 additions and 1 deletions
|
@ -252,6 +252,6 @@ public class TransactionBroadcastTest extends TestWithPeerGroup {
|
|||
// Add the wallet to the peer group (simulate initialization). Transactions should be announced.
|
||||
peerGroup.addWallet(wallet);
|
||||
// Transaction announced to the first peer. No extra Bloom filter because no change address was needed.
|
||||
assertEquals(t3.getTxId(), outbound(p1).getHash());
|
||||
assertEquals(t3.getTxId(), ((Transaction) outbound(p1)).getTxId());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Reference in a new issue