Skip to content

Commit

Permalink
Revert "User can specify the intervale between one FileUpdate/Append …
Browse files Browse the repository at this point in the history
…and the next FileAppend."

This reverts commit 77d8793.
  • Loading branch information
jbair06 committed Nov 28, 2023
1 parent 77d8793 commit fe3411f
Showing 1 changed file with 1 addition and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3753,9 +3753,8 @@ private void signAndSubmitSingleTransaction() throws HederaClientException {
for (var accountId : updateAccountList.getItems()) {
final var accountIdJson = accountId.asJSON();
transactionJson.add(ACCOUNT_TO_UPDATE, accountIdJson);
final var interval = Long.parseLong(intervalTextField.getText());
var incrementedTime = new Timestamp(validStartTimestamp.asDuration()
.plusNanos(interval * count++));
.plusNanos(10l * count++));
transactionJson.add(TRANSACTION_VALID_START_FIELD_NAME, incrementedTime.asJSON());
if (isUpdateAccountFeePayerCheckBox.isSelected()) {
transactionJson.add(FEE_PAYER_ACCOUNT_FIELD_NAME, accountIdJson);
Expand Down

0 comments on commit fe3411f

Please sign in to comment.