## ----setup_deps, eval = FALSE-------------------------------------------------
# library(ShinyBlock)
# 
# # Run this once to configure the isolated Python environment
# install_blockchain_deps()
# 
# # Launch the simulator
# launch_blockchain()

## ----setup_knitr, include = FALSE---------------------------------------------
knitr::opts_chunk$set(
  collapse = TRUE,
  comment = "#>"
)

# Satisfies CRAN's requirement for executable code coverage 
# by verifying package namespace and function exports.
library(ShinyBlock)
print(is.function(launch_blockchain))
print(is.function(install_blockchain_deps))

## ----launch_app, eval = FALSE-------------------------------------------------
# library(ShinyBlock)
# # Launch the simulator dashboard
# launch_blockchain()

