Skip to content

Commit

Permalink
Fix checkSum variable when auth rnquiry
Browse files Browse the repository at this point in the history
  • Loading branch information
shojibur committed Sep 14, 2021
1 parent 79d6d95 commit 227e5e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Messages/AuthEnquiry.php
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,7 @@ public function parseResponse($response)
$this->checkSum = $response_value['fpx_checkSum'];

if (App::environment('production') || Config::get('fpx.should_verify_response'))
$this->verifySign($this->checksum, $this->responseFormat());
$this->verifySign($this->checkSum, $this->responseFormat());

$transaction = $this->saveTransaction();

Expand Down

0 comments on commit 227e5e7

Please sign in to comment.