Fixed missing scope

This commit is contained in:
Rich Morgan 2014-12-17 14:46:55 -05:00
parent cf8bcc53fa
commit 7c72010bee
1 changed files with 3 additions and 3 deletions

View File

@ -16,9 +16,9 @@ class Bitpay_Core_Model_TransactionSpeed
public function toOptionArray() public function toOptionArray()
{ {
return array( return array(
array('value' => self::SPEED_LOW, 'label' => Mage::helper('bitpay')->__(SPEED_LOW)), array('value' => self::SPEED_LOW, 'label' => Mage::helper('bitpay')->__(self::SPEED_LOW)),
array('value' => self::SPEED_MEDIUM, 'label' => Mage::helper('bitpay')->__(SPEED_MEDIUM)), array('value' => self::SPEED_MEDIUM, 'label' => Mage::helper('bitpay')->__(self::SPEED_MEDIUM)),
array('value' => self::SPEED_HIGH, 'label' => Mage::helper('bitpay')->__(SPEED_HIGH)), array('value' => self::SPEED_HIGH, 'label' => Mage::helper('bitpay')->__(self::SPEED_HIGH)),
); );
} }
} }