diff --git a/libraries/chain/include/eosio/chain/block_header.hpp b/libraries/chain/include/eosio/chain/block_header.hpp index dbc75ad57777af7c448db6babd898a87e855db82..bf9cf0bedb89d6d5f72c379f9b26cb1349a8af37 100644 --- a/libraries/chain/include/eosio/chain/block_header.hpp +++ b/libraries/chain/include/eosio/chain/block_header.hpp @@ -58,7 +58,7 @@ namespace eosio { namespace chain { FC_REFLECT(eosio::chain::block_header, (timestamp)(producer)(confirmed)(previous) (transaction_mroot)(action_mroot) - (producer)(schedule_version)(new_producers)(header_extensions)) + (schedule_version)(new_producers)(header_extensions)) FC_REFLECT_DERIVED(eosio::chain::signed_block_header, (eosio::chain::block_header), (producer_signature)) FC_REFLECT(eosio::chain::header_confirmation, (block_id)(producer)(producer_signature) ) diff --git a/scripts/eosio_build_ubuntu.sh b/scripts/eosio_build_ubuntu.sh index 4ba77489f7a2612060a66fc592f0b4ccd6d8fdc4..4e554397391b09164ebe7a923f7466a5318475e0 100644 --- a/scripts/eosio_build_ubuntu.sh +++ b/scripts/eosio_build_ubuntu.sh @@ -82,14 +82,14 @@ if [ "${COUNT}" -gt 1 ]; then printf "\\n\\tThe following dependencies are required to install EOSIO.\\n" - printf "\\n\\t%s\\n\\n" "${DISPLAY}" + printf "\\n\\t${DISPLAY}\\n\\n" printf "\\tDo you wish to install these packages?\\n" select yn in "Yes" "No"; do case $yn in [Yy]* ) printf "\\n\\n\\tInstalling dependencies\\n\\n" sudo apt-get update - if ! sudo apt-get -y install "${DEP}" + if ! sudo apt-get -y install ${DEP} then printf "\\n\\tDPKG dependency failed.\\n" printf "\\n\\tExiting now.\\n"