We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d41f4c commit b66688cCopy full SHA for b66688c
src/test/java/io/api/etherscan/account/AccountTxInternalTest.java
@@ -29,6 +29,8 @@ public void correctStartBlock() {
29
List<TxInternal> txs = getApi().account().txsInternal("0x2C1ba59D6F58433FB1EaEe7d20b26Ed83bDA51A3", 2558775);
30
assertNotNull(txs);
31
assertEquals(24, txs.size());
32
+ assertNotEquals(txs.get(0), txs.get(1));
33
+ assertNotEquals(txs.get(0).toString(), txs.get(1).toString());
34
assertTxs(txs);
35
}
36
0 commit comments