Updated on 2026-08-14
This commit is contained in:
parent
393c44e8d7
commit
e97bfe8b83
3 changed files with 3 additions and 3 deletions
|
|
@ -398,7 +398,7 @@ public class XlmAssetEngine extends CoinEngine {
|
|||
operation = new CreateAccountOperation.Builder(KeyPair.fromAccountId(targetAddress), amountValue.toValueString()).build();
|
||||
}
|
||||
}
|
||||
TransactionEx transaction = TransactionEx.buildEx(60, coinData.getAccountResponse(), operation);
|
||||
TransactionEx transaction = TransactionEx.buildEx(120, coinData.getAccountResponse(), operation);
|
||||
|
||||
|
||||
if (transaction.getFee() != convertToInternalAmount(feeValue).intValueExact()) {
|
||||
|
|
|
|||
|
|
@ -365,7 +365,7 @@ public class XlmEngine extends CoinEngine {
|
|||
else
|
||||
operation = new CreateAccountOperation.Builder(KeyPair.fromAccountId(targetAddress), amountValue.toValueString()).build();
|
||||
|
||||
TransactionEx transaction = TransactionEx.buildEx(60, coinData.getAccountResponse(), operation);
|
||||
TransactionEx transaction = TransactionEx.buildEx(120, coinData.getAccountResponse(), operation);
|
||||
|
||||
|
||||
if (transaction.getFee() != convertToInternalAmount(feeValue).intValueExact()) {
|
||||
|
|
|
|||
|
|
@ -61,7 +61,7 @@ class StellarTransactionBuilder(private val newtorkManager: StellarNetworkManage
|
|||
accountID.accountID = sourceKeyPair.xdrPublicKey
|
||||
val currentTime = Calendar.getInstance().timeInMillis / 1000
|
||||
val minTime = 0L
|
||||
val maxTime = currentTime + 60
|
||||
val maxTime = currentTime + 120
|
||||
|
||||
transaction = Transaction.Builder(
|
||||
Account(sourceKeyPair.accountId, sequence), newtorkManager.network)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue