mirror of
https://github.com/Qortal/qortal.git
synced 2025-07-23 04:36:50 +00:00
Revert "Ignoring test cases intended for Bitcoiny coins"
This reverts commit e287fa0ebe
.
This commit is contained in:
@@ -32,11 +32,6 @@ public class BitcoinTests extends BitcoinyTests {
|
||||
return "tprv8ZgxMBicQKsPdahhFSrCdvC1bsWyzHHZfTneTVqUXN6s1wEtZLwAkZXzFP6TYLg2aQMecZLXLre5bTVGajEB55L1HYJcawpdFG66STVAWPJ";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getDeterministicPublicKey58() {
|
||||
return "tpubDCxs3oB9X7XJYkQGU6gfPwd4h3NEiBGA8mfD1aEbZiG5x3BTH4cJqszDP6dtoHPPjZNEj5jPxuSWHCvjg9AHz4dNg6w5vQhv1B8KwWKpxoz";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getRecipient() {
|
||||
return "2N8WCg52ULCtDSMjkgVTm5mtPdCsUptkHWE";
|
||||
|
@@ -31,8 +31,6 @@ public abstract class BitcoinyTests extends Common {
|
||||
|
||||
protected abstract String getDeterministicKey58();
|
||||
|
||||
protected abstract String getDeterministicPublicKey58();
|
||||
|
||||
protected abstract String getRecipient();
|
||||
|
||||
@Before
|
||||
@@ -164,16 +162,4 @@ public abstract class BitcoinyTests extends Common {
|
||||
System.out.println( "address infos ..." );
|
||||
addressInfos.forEach( System.out::println );
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testWalletSpendingCandidateAddresses() throws ForeignBlockchainException {
|
||||
|
||||
String xpub58 = getDeterministicPublicKey58();
|
||||
|
||||
List<String> candidateAddresses = this.bitcoiny.getSpendingCandidateAddresses(xpub58);
|
||||
|
||||
System.out.println("candidate address count = " + candidateAddresses.size() );
|
||||
System.out.println( "candidate addresses ..." );
|
||||
candidateAddresses.forEach( System.out::println );
|
||||
}
|
||||
}
|
||||
|
@@ -32,11 +32,6 @@ public class DigibyteTests extends BitcoinyTests {
|
||||
return "xpub661MyMwAqRbcEnabTLX5uebYcsE3uG5y7ve9jn1VK8iY1MaU3YLoLJEe8sTu2YVav5Zka5qf2dmMssfxmXJTqZnazZL2kL7M2tNKwEoC34R";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getDeterministicPublicKey58() {
|
||||
return "xpub661MyMwAqRbcEnabTLX5uebYcsE3uG5y7ve9jn1VK8iY1MaU3YLoLJEe8sTu2YVav5Zka5qf2dmMssfxmXJTqZnazZL2kL7M2tNKwEoC34R";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getRecipient() {
|
||||
return "2N8WCg52ULCtDSMjkgVTm5mtPdCsUptkHWE";
|
||||
|
@@ -32,11 +32,6 @@ public class DogecoinTests extends BitcoinyTests {
|
||||
return "dgpv51eADS3spNJh9drNeW1Tc1P9z2LyaQRXPBortsq6yice1k47C2u2Prvgxycr2ihNBWzKZ2LthcBBGiYkWZ69KUTVkcLVbnjq7pD8mnApEru";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getDeterministicPublicKey58() {
|
||||
return "dgub8rqf3khHiPeYE3cNn3Y4DQQ411nAnFpuSUPt5k5GJZQsydsTLkaf4onaWn4N8pHvrV3oNMEATKoPGTFZwm2Uhh7Dy9gYwA7rkSv6oLofbag";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getRecipient() {
|
||||
return null;
|
||||
|
@@ -32,11 +32,6 @@ public class LitecoinTests extends BitcoinyTests {
|
||||
return "tprv8ZgxMBicQKsPdahhFSrCdvC1bsWyzHHZfTneTVqUXN6s1wEtZLwAkZXzFP6TYLg2aQMecZLXLre5bTVGajEB55L1HYJcawpdFG66STVAWPJ";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getDeterministicPublicKey58() {
|
||||
return "tpubDCxs3oB9X7XJYkQGU6gfPwd4h3NEiBGA8mfD1aEbZiG5x3BTH4cJqszDP6dtoHPPjZNEj5jPxuSWHCvjg9AHz4dNg6w5vQhv1B8KwWKpxoz";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getRecipient() {
|
||||
return "2N8WCg52ULCtDSMjkgVTm5mtPdCsUptkHWE";
|
||||
|
@@ -43,11 +43,6 @@ public class PirateChainTests extends BitcoinyTests {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getDeterministicPublicKey58() {
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getRecipient() {
|
||||
return null;
|
||||
@@ -255,8 +250,4 @@ public class PirateChainTests extends BitcoinyTests {
|
||||
@Test
|
||||
@Ignore(value = "Needs adapting for Pirate Chain")
|
||||
public void testWalletAddressInfos() throws ForeignBlockchainException {}
|
||||
|
||||
@Test
|
||||
@Ignore(value = "Needs adapting for Pirate Chain")
|
||||
public void testWalletSpendingCandidateAddresses() throws ForeignBlockchainException {}
|
||||
}
|
@@ -32,11 +32,6 @@ public class RavencoinTests extends BitcoinyTests {
|
||||
return "xpub661MyMwAqRbcEt3Ge1wNmkagyb1J7yTQu4Kquvy77Ycg2iPoh7Urg8s9Jdwp7YmrqGkDKJpUVjsZXSSsQgmAVUC17ZVQQeoWMzm7vDTt1y7";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getDeterministicPublicKey58() {
|
||||
return "xpub661MyMwAqRbcEt3Ge1wNmkagyb1J7yTQu4Kquvy77Ycg2iPoh7Urg8s9Jdwp7YmrqGkDKJpUVjsZXSSsQgmAVUC17ZVQQeoWMzm7vDTt1y7";
|
||||
}
|
||||
|
||||
@Override
|
||||
protected String getRecipient() {
|
||||
return null;
|
||||
|
Reference in New Issue
Block a user