Skip to content
This repository has been archived by the owner on Dec 5, 2024. It is now read-only.

Commit

Permalink
Fix merge error
Browse files Browse the repository at this point in the history
  • Loading branch information
Nashatyrev committed Aug 30, 2017
1 parent 2a715f5 commit cda227b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -1176,7 +1176,7 @@ public void callToPrecompiledAddress(MessageCall msg, PrecompiledContract contra
if (out.getLeft()) { // success
this.refundGas(msg.getGas().longValue() - requiredGas, "call pre-compiled");
this.stackPushOne();
returnDataBuffer = out;
returnDataBuffer = out.getRight();
track.commit();
} else {
// spend all gas on failure, push zero and revert state changes
Expand Down

0 comments on commit cda227b

Please sign in to comment.