btc_addresses.rb
 1DESCRIPTION =
 2	"You can make a Bitcoin payment of any amount to any " \
 3	"of these addresses and it will be credited to your " \
 4	"account at the Canadian Bitcoins exchange rate within 5 " \
 5	"minutes of your transaction reaching 3 confirmations.".freeze
 6
 7if @btc_addresses && !@btc_addresses.empty?
 8	field(
 9		var: "btc_addresses",
10		type: "fixed",
11		label: "Bitcoin Addresses",
12		description: DESCRIPTION,
13		value: @btc_addresses
14	)
15end