コード例 #1
0
ファイル: Wallet.php プロジェクト: Gabrola/blocktrail-sdk-php
 public function updateFeePerKB()
 {
     $result = $this->sdk->feePerKB();
     $this->optimalFeePerKB = $result[self::FEE_STRATEGY_OPTIMAL];
     $this->lowPriorityFeePerKB = $result[self::FEE_STRATEGY_LOW_PRIORITY];
     $this->feePerKBAge = time();
 }