mirror of
https://git.wownero.com/wownero/onion-wownero-blockchain-explorer.git
synced 2024-08-15 00:33:12 +00:00
updated to latest Monero PR's.
This commit is contained in:
parent
3f9a8b96a4
commit
c532b7f675
4 changed files with 16 additions and 3 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -3,4 +3,5 @@
|
||||||
*.*~
|
*.*~
|
||||||
*.user
|
*.user
|
||||||
.idea/
|
.idea/
|
||||||
|
*.log
|
||||||
cmake-build-debug/
|
cmake-build-debug/
|
||||||
|
|
|
@ -61,6 +61,10 @@ add_library(cryptoxmr STATIC IMPORTED)
|
||||||
set_property(TARGET cryptoxmr
|
set_property(TARGET cryptoxmr
|
||||||
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcrypto.a)
|
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcrypto.a)
|
||||||
|
|
||||||
|
add_library(cryptonote_basic STATIC IMPORTED)
|
||||||
|
set_property(TARGET cryptonote_basic
|
||||||
|
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcryptonote_basic.a)
|
||||||
|
|
||||||
add_library(cryptonote_core STATIC IMPORTED)
|
add_library(cryptonote_core STATIC IMPORTED)
|
||||||
set_property(TARGET cryptonote_core
|
set_property(TARGET cryptonote_core
|
||||||
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcryptonote_core.a)
|
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcryptonote_core.a)
|
||||||
|
@ -69,6 +73,10 @@ add_library(cryptonote_protocol STATIC IMPORTED)
|
||||||
set_property(TARGET cryptonote_protocol
|
set_property(TARGET cryptonote_protocol
|
||||||
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcryptonote_protocol.a)
|
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libcryptonote_protocol.a)
|
||||||
|
|
||||||
|
add_library(daemonizer STATIC IMPORTED)
|
||||||
|
set_property(TARGET daemonizer
|
||||||
|
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libdaemonizer.a)
|
||||||
|
|
||||||
add_library(mnemonics STATIC IMPORTED)
|
add_library(mnemonics STATIC IMPORTED)
|
||||||
set_property(TARGET mnemonics
|
set_property(TARGET mnemonics
|
||||||
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libmnemonics.a)
|
PROPERTY IMPORTED_LOCATION ${MONERO_LIBS_DIR}/libmnemonics.a)
|
||||||
|
@ -176,9 +184,11 @@ set(LIBRARIES
|
||||||
myext
|
myext
|
||||||
mstch
|
mstch
|
||||||
wallet
|
wallet
|
||||||
|
blockchain_db
|
||||||
cryptonote_core
|
cryptonote_core
|
||||||
cryptonote_protocol
|
cryptonote_protocol
|
||||||
blockchain_db
|
cryptonote_basic
|
||||||
|
daemonizer
|
||||||
cryptoxmr
|
cryptoxmr
|
||||||
blocks
|
blocks
|
||||||
lmdb
|
lmdb
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
#include "net/http_client.h"
|
#include "net/http_client.h"
|
||||||
#include "storages/http_abstract_invoke.h"
|
#include "storages/http_abstract_invoke.h"
|
||||||
|
|
||||||
#include "cryptonote_core/cryptonote_basic.h"
|
//#include "cryptonote_core/cryptonote_basic.h"
|
||||||
#include "cryptonote_core/tx_pool.h"
|
#include "cryptonote_core/tx_pool.h"
|
||||||
#include "cryptonote_core/blockchain.h"
|
#include "cryptonote_core/blockchain.h"
|
||||||
#include "blockchain_db/lmdb/db_lmdb.h"
|
#include "blockchain_db/lmdb/db_lmdb.h"
|
||||||
|
|
|
@ -45,7 +45,9 @@ namespace xmreg
|
||||||
|
|
||||||
timeout_time_ms = std::chrono::milliseconds {timeout_time};
|
timeout_time_ms = std::chrono::milliseconds {timeout_time};
|
||||||
|
|
||||||
m_http_client.set_server(deamon_url);
|
m_http_client.set_server(
|
||||||
|
deamon_url,
|
||||||
|
boost::optional<epee::net_utils::http::login>{});
|
||||||
}
|
}
|
||||||
|
|
||||||
bool
|
bool
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue