Skip to content

Commit

Permalink
Java bindings: Account for base fee size
Browse files Browse the repository at this point in the history
  • Loading branch information
yperbasis authored and chfast committed May 28, 2021
1 parent c08bdc2 commit 13a0a9f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ public ByteBuffer call(ByteBuffer msg) {

@Override
public ByteBuffer getTxContext() {
return ByteBuffer.allocateDirect(160).put(new byte[160]);
return ByteBuffer.allocateDirect(192).put(new byte[192]);
}

@Override
Expand Down

0 comments on commit 13a0a9f

Please sign in to comment.