Skip to content

Commit c002c2c

Browse files
committed
fixes
1 parent af2456b commit c002c2c

File tree

14 files changed

+15
-8
lines changed

14 files changed

+15
-8
lines changed

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,3 @@
1-
.idea
1+
.idea
2+
/vendor
3+
composer.lock

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,8 @@ $wallet->read("/path/to/wallet.dat");
2222
// check if wallet is encrypted
2323
if ($wallet->isEncrypted()) {
2424

25-
// get wallet master key
26-
echo $wallet->getMasterKey()->getEncryptedKey();
25+
// print wallet master key
26+
echo $wallet->getMasterKey()->getEncryptedKey() . "\n";
2727

2828
// decrypt wallet
2929
$wallet->decrypt("password");

composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,9 +14,9 @@
1414
}
1515
],
1616
"require": {
17-
"php": "^7.0",
17+
"php": "^7.1",
1818
"bitwasp/bitcoin": "^0.0.30",
19-
"andkom/php-berkeley-db": "^1.0"
19+
"andkom/php-berkeley-db": "^1.0.0"
2020
},
2121
"require-dev": {
2222
"phpunit/phpunit": ">=5.0"
File renamed without changes.

0 commit comments

Comments
 (0)