Skip to content

Commit

Permalink
SP-935 change satoshisPerByte to float
Browse files Browse the repository at this point in the history
  • Loading branch information
p-maguire committed May 7, 2024
1 parent a8d3e6c commit e035c4a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/BitPaySDK/Model/Invoice/MinerFeesItem.php
Original file line number Diff line number Diff line change
Expand Up @@ -18,20 +18,20 @@
*/
class MinerFeesItem
{
protected ?int $satoshisPerByte = null;
protected ?float $satoshisPerByte = null;
protected ?int $totalFee = null;
protected ?float $fiatAmount = null;

public function __construct()
{
}

public function getSatoshisPerByte(): ?int
public function getSatoshisPerByte(): ?float
{
return $this->satoshisPerByte;
}

public function setSatoshisPerByte(int $satoshisPerByte): void
public function setSatoshisPerByte(float $satoshisPerByte): void
{
$this->satoshisPerByte = $satoshisPerByte;
}
Expand Down

0 comments on commit e035c4a

Please sign in to comment.