Skip to content

Commit d1ef2bf

Browse files
authored
Merge pull request #394 from bavix/key-fix
fix key in BookkeeperService
2 parents 736e1ce + a957a5a commit d1ef2bf

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Services/BookkeeperService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,6 +64,6 @@ public function increase(Wallet $wallet, $value): string
6464

6565
private function getKey(Wallet $wallet): string
6666
{
67-
return (string) $wallet->getKey();
67+
return __CLASS__.'::'.$wallet->getKey();
6868
}
6969
}

0 commit comments

Comments
 (0)