forked from Qortal/qortal
Fix crosschain tests
This commit is contained in:
parent
03ba36729b
commit
15ae32efd9
@ -41,24 +41,4 @@ public class BitcoinTests extends BitcoinyTests {
|
|||||||
protected String getRecipient() {
|
protected String getRecipient() {
|
||||||
return "2N8WCg52ULCtDSMjkgVTm5mtPdCsUptkHWE";
|
return "2N8WCg52ULCtDSMjkgVTm5mtPdCsUptkHWE";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
|
||||||
@Ignore("Often fails due to unreliable BTC testnet ElectrumX servers")
|
|
||||||
public void testGetMedianBlockTime() {}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Ignore("Often fails due to unreliable BTC testnet ElectrumX servers")
|
|
||||||
public void testFindHtlcSecret() {}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Ignore("Often fails due to unreliable BTC testnet ElectrumX servers")
|
|
||||||
public void testBuildSpend() {}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Ignore("Often fails due to unreliable BTC testnet ElectrumX servers")
|
|
||||||
public void testGetWalletBalance() {}
|
|
||||||
|
|
||||||
@Test
|
|
||||||
@Ignore("Often fails due to unreliable BTC testnet ElectrumX servers")
|
|
||||||
public void testGetUnusedReceiveAddress() {}
|
|
||||||
}
|
}
|
||||||
|
@ -29,17 +29,17 @@ public class DigibyteTests extends BitcoinyTests {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getDeterministicKey58() {
|
protected String getDeterministicKey58() {
|
||||||
return "xpub661MyMwAqRbcEnabTLX5uebYcsE3uG5y7ve9jn1VK8iY1MaU3YLoLJEe8sTu2YVav5Zka5qf2dmMssfxmXJTqZnazZL2kL7M2tNKwEoC34R";
|
return "xprv9z8QpS7vxwMC2fCnG1oZc6c4aFRLgsqSF86yWrJBKEzMY3T3ySCo85x8Uv5FxTavAQwgEDy1g3iLRT5kdtFjoNNBKukLTMzKwCUn1Abwoxg";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getDeterministicPublicKey58() {
|
protected String getDeterministicPublicKey58() {
|
||||||
return "xpub661MyMwAqRbcEnabTLX5uebYcsE3uG5y7ve9jn1VK8iY1MaU3YLoLJEe8sTu2YVav5Zka5qf2dmMssfxmXJTqZnazZL2kL7M2tNKwEoC34R";
|
return "xpub6D7mDwepoJuVF9HFN3LZyEYo8HFq6LZHcM2aKEhnsaXLQqnCWyX3ftGcLDcjYmiPCc9GNX4VjfT32hwvYQnh9H5Z5diAvMsXRrxFmckyNoR";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getRecipient() {
|
protected String getRecipient() {
|
||||||
return "2N8WCg52ULCtDSMjkgVTm5mtPdCsUptkHWE";
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
|
@ -259,4 +259,8 @@ public class PirateChainTests extends BitcoinyTests {
|
|||||||
@Test
|
@Test
|
||||||
@Ignore(value = "Needs adapting for Pirate Chain")
|
@Ignore(value = "Needs adapting for Pirate Chain")
|
||||||
public void testWalletSpendingCandidateAddresses() throws ForeignBlockchainException {}
|
public void testWalletSpendingCandidateAddresses() throws ForeignBlockchainException {}
|
||||||
|
|
||||||
|
@Test
|
||||||
|
@Ignore(value = "Needs adapting for Pirate Chain")
|
||||||
|
public void testRepair() throws ForeignBlockchainException {}
|
||||||
}
|
}
|
@ -29,12 +29,12 @@ public class RavencoinTests extends BitcoinyTests {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getDeterministicKey58() {
|
protected String getDeterministicKey58() {
|
||||||
return "xpub661MyMwAqRbcEt3Ge1wNmkagyb1J7yTQu4Kquvy77Ycg2iPoh7Urg8s9Jdwp7YmrqGkDKJpUVjsZXSSsQgmAVUC17ZVQQeoWMzm7vDTt1y7";
|
return "xprv9z8QpS7vxwMC2fCnG1oZc6c4aFRLgsqSF86yWrJBKEzMY3T3ySCo85x8Uv5FxTavAQwgEDy1g3iLRT5kdtFjoNNBKukLTMzKwCUn1Abwoxg";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
protected String getDeterministicPublicKey58() {
|
protected String getDeterministicPublicKey58() {
|
||||||
return "xpub661MyMwAqRbcEt3Ge1wNmkagyb1J7yTQu4Kquvy77Ycg2iPoh7Urg8s9Jdwp7YmrqGkDKJpUVjsZXSSsQgmAVUC17ZVQQeoWMzm7vDTt1y7";
|
return "xpub6D7mDwepoJuVF9HFN3LZyEYo8HFq6LZHcM2aKEhnsaXLQqnCWyX3ftGcLDcjYmiPCc9GNX4VjfT32hwvYQnh9H5Z5diAvMsXRrxFmckyNoR";
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
@Override
|
||||||
|
Loading…
x
Reference in New Issue
Block a user