Current section

Files

Jump to
faker lib faker bitcoin.ex
Raw

lib/faker/bitcoin.ex

defmodule Faker.Bitcoin do
@moduledoc false
alias Faker.Blockchain.Bitcoin
@deprecated "Use Faker.Blockchain.Bitcoin.address instead"
def address(format \\ :main)
def address(:testnet) do
Bitcoin.address(:testnet)
end
def address(:main) do
Bitcoin.address(:main)
end
end