mirror of
https://github.com/haveno-dex/haveno.git
synced 2025-05-30 12:04:39 -04:00
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:
parent
6188905848
commit
13d87a32a5
5 changed files with 15 additions and 15 deletions
|
@ -130,7 +130,7 @@ class CoreWalletsService {
|
|||
}
|
||||
|
||||
String getXmrSeed() {
|
||||
return xmrWalletService.getWallet().getMnemonic();
|
||||
return xmrWalletService.getWallet().getSeed();
|
||||
}
|
||||
|
||||
String getXmrPrimaryAddress() {
|
||||
|
|
|
@ -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());
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue