Skip to content

Commit

Permalink
[PLA-1907] Fixes Beam transactions (#88)
Browse files Browse the repository at this point in the history
  • Loading branch information
leonardocustodio committed Jul 24, 2024
1 parent 1ce8297 commit 4759194
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,13 +19,13 @@
}
],
"require": {
"php": "^8.2",
"php": "^8.2|^8.3",
"ext-bcmath": "*",
"ext-json": "*",
"ext-openssl": "*",
"enjin/platform-core": "*",
"phrity/websocket": "^1.0",
"rebing/graphql-laravel": "^9.2",
"rebing/graphql-laravel": "^9.0",
"spatie/laravel-package-tools": "^1.0",
"spatie/laravel-ray": "^1.0"
},
Expand Down Expand Up @@ -72,8 +72,8 @@
"prefer-stable": true,
"require-dev": {
"dms/phpunit-arraysubset-asserts": "dev-master",
"laravel/pint": "^1.16",
"nunomaduro/collision": "^8.1",
"laravel/pint": "^1.0",
"nunomaduro/collision": "^8.0",
"larastan/larastan": "^2.0",
"orchestra/testbench": "^9.0",
"phpstan/extension-installer": "^1.0",
Expand Down
2 changes: 1 addition & 1 deletion src/Commands/BatchProcess.php
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ protected function processBatch(BeamType $type): int
foreach ($params as $param) {
$transaction = $this->transaction->store([
'method' => $method,
'encoded_data' => $this->serialize->encode($method, [
'encoded_data' => $this->serialize->encode(isRunningLatest() ? $method . 'V1010' : $method, [
'collectionId' => $param['collectionId'],
'recipients' => $param['recipients'],
]),
Expand Down

0 comments on commit 4759194

Please sign in to comment.