Skip to content

Commit

Permalink
use kornrunner/rlp
Browse files Browse the repository at this point in the history
  • Loading branch information
kornrunner committed Feb 9, 2023
1 parent 029f8b9 commit 6a7d887
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1']
php-version: ['7.4', '8.0', '8.1', '8.2']

steps:
- uses: actions/checkout@v2
Expand All @@ -32,7 +32,7 @@ jobs:
strategy:
fail-fast: false
matrix:
php-version: ['7.4', '8.0', '8.1']
php-version: ['7.4', '8.0', '8.1', '8.2']
arch: [x64]
ts: [nts]

Expand Down
2 changes: 1 addition & 1 deletion composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
"php": ">=7.3",
"kornrunner/keccak": "^1.0",
"kornrunner/secp256k1": "^0.2",
"web3p/rlp": "^0.3"
"kornrunner/rlp": "^0.3"
},
"autoload": {
"psr-4": {
Expand Down
2 changes: 1 addition & 1 deletion src/Ethereum/EIP1559Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use kornrunner\Keccak;
use kornrunner\Secp256k1;
use RuntimeException;
use Web3p\RLP\RLP;
use kornrunner\RLP\RLP;
use kornrunner\Signature\Signature;

class EIP1559Transaction
Expand Down
2 changes: 1 addition & 1 deletion src/Ethereum/Transaction.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
use kornrunner\Keccak;
use kornrunner\Secp256k1;
use RuntimeException;
use Web3p\RLP\RLP;
use kornrunner\RLP\RLP;
use kornrunner\Signature\Signature;

class Transaction {
Expand Down

0 comments on commit 6a7d887

Please sign in to comment.