update monero-java (v0.8.0) and monero-project (v0.18.2.2 w/ extensions)

subtract mining fees from payment destinations
optimize wallet rpc calls for periodic refresh from 3 to 1
fixes to saving wallet files
respect frozen outputs
restore from multisig seed (experimental)
This commit is contained in:
woodser 2023-07-25 08:19:17 -04:00
parent 6188905848
commit 13d87a32a5
5 changed files with 15 additions and 15 deletions

View file

@ -130,7 +130,7 @@ class CoreWalletsService {
}
String getXmrSeed() {
return xmrWalletService.getWallet().getMnemonic();
return xmrWalletService.getWallet().getSeed();
}
String getXmrPrimaryAddress() {

View file

@ -511,7 +511,7 @@ public class XmrWalletService {
}
// verify unlock height
if (tx.getUnlockHeight() != 0) throw new RuntimeException("Unlock height must be 0");
if (!BigInteger.valueOf(0).equals(tx.getUnlockTime())) throw new RuntimeException("Unlock height must be 0");
// verify miner fee
BigInteger feeEstimate = getFeeEstimate(tx.getWeight());