Skip to content
This repository has been archived by the owner on Sep 26, 2019. It is now read-only.

Commit

Permalink
Revert "Fix gas required for private transaction to 23992"
Browse files Browse the repository at this point in the history
This reverts commit bb246c4
  • Loading branch information
iikirilov committed Jul 13, 2019
1 parent 5d61d1c commit 9c7d68e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ public String build(final TransactionType type) {
PrivateTransaction.builder()
.nonce(nonce)
.gasPrice(Wei.of(1000))
.gasLimit(23992)
.gasLimit(63992)
.to(to)
.value(Wei.ZERO)
.payload(payload)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public void setPrivateTransactionProcessor(

@Override
public Gas gasRequirement(final BytesValue input) {
return Gas.of(0);
return Gas.of(40_000L); // Not sure
}

@Override
Expand Down

0 comments on commit 9c7d68e

Please sign in to comment.