Skip to content

Commit a95c587

Browse files
committed
updated BL3P fees, updated changelog
1 parent d4902f3 commit a95c587

File tree

3 files changed

+8
-3
lines changed

3 files changed

+8
-3
lines changed

CHANGELOG.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
55
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
66

77
## [Unreleased]
8+
## [v1.5.1] - 2021-08-13
9+
### Changed
10+
* BL3P changed their withdrawal fee from 30k sat to 5k sat. This change updates to code to display the correct fee.
11+
812
## [v1.5.0] - 2021-07-10
913
### Added
1014
* When you buy Bitcoin and supply `EXPORT_CSV=/location/to/file.csv`, Bitcoin-DCA will export the order information to that file in CSV format.
@@ -90,7 +94,8 @@ Due to regulatory changes in The Netherlands, BL3P and Bitvavo currently require
9094
### Added
9195
* A Python based fallback mechanism for 32bits systems. Unfortunately a bug prevented Raspberry Pi users from using Xpubs properly. The system will automatically use the native, more advanced method or derivation for systems that are capable and degrade to the Python tool without people noticing.
9296

93-
[Unreleased]: https://github.com/Jorijn/bitcoin-dca/compare/v1.5.0...HEAD
97+
[Unreleased]: https://github.com/Jorijn/bitcoin-dca/compare/v1.5.1...HEAD
98+
[v1.5.1]: https://github.com/Jorijn/bitcoin-dca/compare/v1.5.0...v1.5.1
9499
[v1.5.0]: https://github.com/Jorijn/bitcoin-dca/compare/v1.4.1...v1.5.0
95100
[v1.4.1]: https://github.com/Jorijn/bitcoin-dca/compare/v1.4.0...v1.4.1
96101
[v1.4.0]: https://github.com/Jorijn/bitcoin-dca/compare/v1.3.2...v1.4.0

src/Service/Bl3p/Bl3pWithdrawService.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ public function getAvailableBalance(): int
5252

5353
public function getWithdrawFeeInSatoshis(): int
5454
{
55-
return 30000;
55+
return 5000;
5656
}
5757

5858
public function supportsExchange(string $exchange): bool

tests/Service/Bl3p/Bl3pWithdrawServiceTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ public function testSupportsExchange(): void
121121
*/
122122
public function testFeeCalculation(): void
123123
{
124-
static::assertSame(30000, $this->service->getWithdrawFeeInSatoshis());
124+
static::assertSame(5000, $this->service->getWithdrawFeeInSatoshis());
125125
}
126126

127127
private function createBalanceStructure(int $balance): array

0 commit comments

Comments
 (0)