Unset transaction source so the duplicate detector keeps working.

This commit is contained in:
James Cole 2018-09-06 07:40:56 +02:00
parent b855c54e81
commit 4ef663669c
2 changed files with 5 additions and 5 deletions

View File

@ -190,7 +190,7 @@ class ImportArrayStorage
*/
private function getHash(array $transaction): string
{
unset($transaction['importHashV2']);
unset($transaction['importHashV2'], $transaction['original-source']);
$json = json_encode($transaction);
if (false === $json) {
/** @noinspection ForgottenDebugOutputInspection */