Fixes new -Wshadow (#8105) warning from #8606:
Making all in src
CXX libbitcoin_server_a-main.o
main.cpp:4792:30: warning: declaration shadows a local variable [-Wshadow]
bool send = false;
^
main.cpp:4748:22: note: previous declaration is here
bool send = false;
^
1 warning generated.
It would be nice to get rid of it completely and sending merkleblock only when something like merkleBlock.initialized(), but there is no getter now and all properties are marked as public only for unit testing.