Ilya Kitaev
10c06ddac7
wallet_api: segfault on refresh fixed
2016-07-18 23:03:09 +03:00
Ilya Kitaev
9d2cb4f36c
WalletListener functionality
2016-07-18 23:02:47 +03:00
Ilya Kitaev
d27b883b2d
hack to successfull linking for MSYS2
2016-07-18 23:02:47 +03:00
Ilya Kitaev
083380cb8f
Transaction fee multiplier aka priority integraged
2016-07-18 23:02:18 +03:00
Ilya Kitaev
00ed12bd6c
Wallet::paymentIdValid
2016-07-18 23:02:18 +03:00
moneromooo-monero
87b1153f37
wallet2_api: use uint64_t for amounts
2016-07-17 09:33:31 +01:00
moneromooo-monero
d7b681cd65
remove hf_starting_height db
...
It's not really needed, it used to be an optimization for when
that code was not using the db and needed to recalculate things
fast on startup.
2016-07-13 21:38:34 +01:00
anonimal
bbba197cc9
Docs: update 'Development Resources' in README.
...
* Branch development was recently removed.
All PR's now go directly to master.
* Also, removed EOL whitespace
2016-07-13 02:07:20 +00:00
anonimal
2feb94b44d
Travis-CI: add build-status badge to README.md
...
* Currently points to anonimal/bitmonero.
This should be changed to monero-project/bitmonero
once the project signs-up for Travis-CI.
2016-07-13 01:43:31 +00:00
anonimal
f025622ff2
Travis-CI: remote redundant make release-test.
2016-07-13 00:45:06 +00:00
anonimal
b332da3e9a
Travis-CI: implement first-draft configuration.
2016-07-12 23:33:57 +00:00
redfish
f07f120e5d
cmake: don't try to link with atomic on Apple
...
-latomic is necessary with Clang on Linux, but
apparently, on OSX it's not found.
2016-07-12 00:25:56 -04:00
redfish
19349d7870
cmake: ARM: clang: make warning non-fatal: inline asm
...
Clang issues a warning for some inline asm in stack_trace.cpp. This
patch ieaves the warning to be displayed as a reminder to fix
the code.
2016-07-10 21:27:00 -04:00
redfish
f3e09f36d3
cmake: link with -latomic for clang
...
otherwise clang build fails with
../cryptonote_core/libcryptonote_core.a(miner.cpp.o): In function
`std::__atomic_base<unsigned long long>::load(std::memory_order) const':
/usr/bin/../lib/gcc/i686-pc-linux-gnu/6.1.1/../../../../include/c++/6.1.1/bits/atomic_base.h:396:
undefined reference to `__atomic_load_8'
This has no effect on the gcc build.
The one strange thing is that test code like
std::atomic<int> x;
int main() { return x; }
compiles and links without errors with clang, without -latomic. This
alone would suggest that this patch is unnecessary, but that is not the
case. It's not clear exactly why, though. The bitmonero code is
including the same header, but it must be doing something more complex
than in this test code snippet that causes the failure at link time
pasted above. In any case, passing -latomic fixes the problem and
seems safe.
.
2016-07-10 21:27:00 -04:00
redfish
f4b35aeafd
cmake: include -ldl via cmake built-in var
...
This does two things:
1. fixes clang build, which otherwise errors with undefined symbol
'dlsym'.
2. simplifies the cmake script, delegating to cmake to figure
out platform-specific flags for linking against the dl library.
2016-07-10 21:27:00 -04:00
redfish
fa85cd845f
common: stack trace: make clang happy with func ptrs
...
Tested that it builds with:
gcc 6.1.1, STATIC=OFF,i686
gcc 6.1.1, STATIC=OFF,armv7h
clang 3.8, STATIC=OFF,i686
clang 3.8, STATIC=OFF,armv7h
gcc 6.1.1, STATIC=ON,i686
clang 3.8, STATIC=ON,i686
Also tested that stack trace is generated fine on exception on:
i686, gcc 6.1.1, STATIC=OFF
(didn't bother testing all the other platforms/configs)
This should fix the build problem on OSX (#871 , #901 ), but
I don't have OSX, so I could only test Clang on Linux.
2016-07-10 21:26:11 -04:00
redfish
4dce26bba4
cmake: do not pass -stdlib=c++ to clang >=3.7
...
Tested on Linux (Arch) with clang 3.7 and 3.8 i686 and ARM:
if -stdlib=c++ is passed to clang, then the build errors
out with <string>,<iostrea>,etc. headers not found. Simply
not passing the arg fixes the problem.
**NOTE**: not tested on OSX.
2016-07-10 21:19:16 -04:00
moneromooo-monero
014f3a0d39
Add a daemon RPC version, and make simplewallet check it
...
If the version is different, simplewallet will refuse to use that
daemon, unless --allow-mismatched-daemon-version is used.
2016-07-10 16:49:40 +01:00
moneromooo-monero
78cc10f3fa
daemon: fix ban seconds being misinterpreted as absolute
...
Absolute to relative conversion is already done by the callee.
2016-07-10 15:13:53 +01:00
moneromooo-monero
34ecfdbf15
rpc: fix get_bans and set_bans RPC names, they were missing a _
2016-07-10 15:10:51 +01:00
moneromooo-monero
a95a2cbc4d
wallet_rpc_server: add payment id from integrated addresses to extra
2016-07-10 13:46:18 +01:00
redfish
ce6b83128e
daemonizer: posix: keep parent's working dir and umask
...
Keep the working directory (and umask) inherited from
the parent. Otherwise, it's impossible to control
the working directory of the daemon (from systemd, for
example).
Furthermoer, bitmonerod attempts to create logging directories and files
*in current working directory*. This fails due to permission denied and
generates a (caught, nonfatal) exception. Below is the strace with this
patch applied (so, no `chdir("/")`), showing successful opens at `log/`
relative path. Without this patch they fail (sorry, didn't save the
trace).
```
28911 getcwd("/.../bitmonero", 128) = 25
28911 stat64("/var/lib/bitmonero/.bitmonero", {st_mode=S_IFDIR|0755, st_size=4096, ...}) = 0
28911 stat64("/etc/bitmonerod.conf", {st_mode=S_IFREG|0644, st_size=244, ...}) = 0
28911 open("/etc/bitmonerod.conf", O_RDONLY|O_LARGEFILE) = 3
28911 open("/var/log/bitmonero/bitmonero.log", O_WRONLY|O_CREAT|O_APPEND|O_LARGEFILE, 0666) = 3
28911 stat64("log", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
28911 stat64("log/dbg", {st_mode=S_IFDIR|0700, st_size=4096, ...}) = 0
28911 open("log/dbg/main.log", O_WRONLY|O_CREAT|O_TRUNC|O_LARGEFILE, 0666) = 4
```
The reasoning of chdir("/") in order to prevent the daemon from holding
a filesystem in busy state is not compelling at all: the choice of
working directory for the daemon is the user's business not the
daemon's.
2016-07-09 20:16:44 -04:00
redfish
1e89f4f2c5
cmake: do not ignore dangerous warnings with -Wno-error
...
Shorten the list of warnings that are reported, but
which are forced to NOT generate an error, via -Wno-error.
Unwhitelist these: strict-aliasing, sign-compare, type-limits
For example, ignoring strict-aliasing warning caused
lots of wasted time diagnosing Issue #847 .
2016-07-09 11:59:07 -04:00
redfish
ab250754f2
cmake: pass -fno-strict-aliasing to fix build with GCC 6.1.1
...
This patch is a temprorary workaround until aliasing is fixed in the
code (Issue #847 ).
2016-07-08 21:42:05 -04:00
Riccardo Spagni
18dd507024
Merge pull request #889
...
a0bf85d
wallet2_api: make this build (smatch needs .str() for /=) (moneromooo-monero)
2016-07-08 23:00:38 +02:00
moneromooo-monero
a0bf85d09d
wallet2_api: make this build (smatch needs .str() for /=)
2016-07-07 22:42:59 +01:00
Riccardo Spagni
59172156bf
Merge pull request #885
...
b727a1f
updated README to reflect Windows changes (Riccardo Spagni)
2016-07-06 18:22:16 +02:00
Riccardo Spagni
18fa01c092
Merge pull request #884
...
c2ad9ca
allow peers without port (moneromooo-monero)
2016-07-06 18:20:17 +02:00
Riccardo Spagni
1088ed862b
Merge pull request #883
...
459ec60
daemon: print exception errors when failing to parse config file (moneromooo-monero)
2016-07-06 18:19:40 +02:00
Riccardo Spagni
0b65717a5d
Merge pull request #882
...
f11191a
rpc: restrict number of fake outs requested in restricted rpc mode (moneromooo-monero)
2016-07-06 18:17:08 +02:00
Riccardo Spagni
00fd89a36d
Merge pull request #879
...
6b08001
simplewallet: mention the background refresh thread when starting (moneromooo-monero)
2016-07-06 18:15:36 +02:00
Riccardo Spagni
3923cbddaf
Merge pull request #878
...
945c272
wallet: add a fee multiplier (moneromooo-monero)
2016-07-06 18:14:34 +02:00
Riccardo Spagni
65df33fb06
Merge pull request #877
...
ecd0f2d
makefile: remove unnecessary ARM-specific targets (redfish)
c650160
cmake: disable AES on ARM (redfish)
804b1bc
cmake: initialize ARCH for native builds (redfish)
bb39034
cmake: remove repetitive code in handling of NO_AES (redfish)
2016-07-06 18:14:03 +02:00
Riccardo Spagni
c9f66dfaba
Merge pull request #876
...
72287d1
contrib: epee: add missing noexcept spec to class decl (redfish)
2016-07-06 18:13:28 +02:00
Riccardo Spagni
160e808796
Merge pull request #875
...
14f7538
readme: move license to separate file for packaging (redfish)
2016-07-06 18:12:53 +02:00
Riccardo Spagni
628f57b212
Merge pull request #873
...
d718960
remove POSIX_C_SOURCE and remove dlfcn.h for static builds (luigi1111)
2016-07-06 18:12:03 +02:00
Riccardo Spagni
fc58069731
Merge pull request #872
...
beb6d92
CMake: GPL 'libutils' script removed (Ilya Kitaev)
4e5521d
PendingTransactionImpl: pointer->reference (Ilya Kitaev)
7b7cf21
commented regex (Ilya Kitaev)
eec0f57
Typo fixed (Ilya Kitaev)
f1c4a37
Wallet::createTransaction: added mixin_count param (Ilya Kitaev)
3318add
double/string to monero integer convertion methods (Ilya Kitaev)
3ac20a4
wallet::default_mixin exposed to public interface as Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction (Ilya Kitaev)
c554055
Wallet::filename, Wallet::keysFilename, tests for move wallet (Ilya Kitaev)
8f9d98b
removed unused "using" (Ilya Kitaev)
2facbe7
Wallet API : WalletManager::findWallets() added (Ilya Kitaev)
ec949c3
scripts for faster test wallets generation (Ilya Kitaev)
7f3d28f
regenerated test wallets, basic functions got broken (Ilya Kitaev)
4327548
installing wallet_api header (Ilya Kitaev)
7ac1342
cmake: BUILD_TESTS as option explicitly; added missed dependency (Ilya Kitaev)
1f0d016
cmake libutils dependency added (Ilya Kitaev)
d43ad22
all wallet dependencies merged to single static lib (Ilya Kitaev)
9ae4e87
WalletListener::moneyReceived test (Ilya Kitaev)
40087a7
WalletListener::moneySpent test (Ilya Kitaev)
27d86b7
WalletListener::moneySpent(), WalletListener::moneyReceived() (Ilya Kitaev)
ff52c67
i_wallet_callback: virtual dtor (Ilya Kitaev)
5dbd2b8
started WalletListener (Ilya Kitaev)
71131a8
TransactionHistory continued (Ilya Kitaev)
9311934
TransactionHistory continued (Ilya Kitaev)
566166a
merged with upstream (Ilya Kitaev)
53a97bd
Wallet API: transaction history in progress (Ilya Kitaev)
02c9df5
Wallet API : transaction history in progress (Ilya Kitaev)
a213887
transaction history api in progress (Ilya Kitaev)
b6aaf53
transaction history api in progress (Ilya Kitaev)
f83f3cb
api implementation splitted over separate files (Ilya Kitaev)
4e1c2dc
TransactionInfo / TransactionHistory APIs design (Ilya Kitaev)
1774d95
TODOs for Transaction/Transfer interface (Ilya Kitaev)
d97e9ef
Transaction API continued (Ilya Kitaev)
079fbd3
Wallet::createTransaction API introduced (Ilya Kitaev)
ee5bb17
Wallet::transfer() continued (Ilya Kitaev)
c37c856
Wallet::transfer in progress (Ilya Kitaev)
830c19c
Wallet::refresh + tests (Ilya Kitaev)
1ae9cdc
"testnet" is default parameter (Ilya Kitaev)
2157a9a
testnet option, Wallet::balance(), Wallet::unlockedBalance() (Ilya Kitaev)
8790904
- testnet option added to api; (Ilya Kitaev)
2cce329
wallet2::store() implemented within wallet2::store_to (Ilya Kitaev)
d608647
WalletManager::findWallets: searching by "keys" files instead of "address.txt" files (Ilya Kitaev)
ca61153
Wallet: payment id and integrated address (Ilya Kitaev)
23cbf6f
PendingTransactionImpl: pointer->reference (Ilya Kitaev)
c1d9e7c
commented regex (Ilya Kitaev)
563baf1
Typo fixed (Ilya Kitaev)
2efec04
Wallet::createTransaction: added mixin_count param (Ilya Kitaev)
85a6322
double/string to monero integer convertion methods (Ilya Kitaev)
e7d8f2a
wallet::default_mixin exposed to public interface as Wallet::setDefaultMixin, Wallet::defaultMixin; wallet::create_transaction_2 used in Wallet::createTransaction (Ilya Kitaev)
a537489
Wallet::filename, Wallet::keysFilename, tests for move wallet (Ilya Kitaev)
a1eddcd
removed unused "using" (Ilya Kitaev)
8390bfa
Wallet API : WalletManager::findWallets() added (Ilya Kitaev)
44cc0ef
scripts for faster test wallets generation (Ilya Kitaev)
2060bfe
regenerated test wallets, basic functions got broken (Ilya Kitaev)
dbc0b03
installing wallet_api header (Ilya Kitaev)
653c7e3
cmake: BUILD_TESTS as option explicitly; added missed dependency (Ilya Kitaev)
ef9a74c
cmake libutils dependency added (Ilya Kitaev)
191cb59
all wallet dependencies merged to single static lib (Ilya Kitaev)
91eeeb8
WalletListener::moneyReceived test (Ilya Kitaev)
64348a2
WalletListener::moneySpent test (Ilya Kitaev)
060bb62
WalletListener::moneySpent(), WalletListener::moneyReceived() (Ilya Kitaev)
214014c
i_wallet_callback: virtual dtor (Ilya Kitaev)
3745770
started WalletListener (Ilya Kitaev)
e6fdd5d
TransactionHistory continued (Ilya Kitaev)
3dd4b4c
merged with upstream (Ilya Kitaev)
d500272
Wallet API : transaction history in progress (Ilya Kitaev)
663ed04
transaction history api in progress (Ilya Kitaev)
12345d3
api implementation splitted over separate files (Ilya Kitaev)
60508e6
TransactionInfo / TransactionHistory APIs design (Ilya Kitaev)
951f3b5
Wallet::createTransaction API introduced (Ilya Kitaev)
7c51227
Wallet::transfer in progress (Ilya Kitaev)
e04c67a
Wallet::refresh + tests (Ilya Kitaev)
9cdf0b7
"testnet" is default parameter (Ilya Kitaev)
caf0e02
testnet option, Wallet::balance(), Wallet::unlockedBalance() (Ilya Kitaev)
8df820b
- testnet option added to api; (Ilya Kitaev)
94eaeb5
wallet2::store() implemented within wallet2::store_to (Ilya Kitaev)
2016-07-06 18:11:04 +02:00
Riccardo Spagni
b727a1ffbf
updated README to reflect Windows changes
2016-07-03 16:42:26 +02:00
moneromooo-monero
c2ad9caf01
allow peers without port
...
The default port is then used
2016-07-03 12:51:12 +01:00
moneromooo-monero
459ec6040e
daemon: print exception errors when failing to parse config file
...
When an exception happens while reading the config file, we need
to print the error, as the logging system isn't initialized yet,
so the generic catch will not print anything.
2016-06-30 22:15:40 +01:00
moneromooo-monero
f11191a818
rpc: restrict number of fake outs requested in restricted rpc mode
2016-06-29 20:43:14 +01:00
Ilya Kitaev
beb6d9200d
CMake: GPL 'libutils' script removed
2016-06-24 14:49:23 +03:00
redfish
ecd0f2dde7
makefile: remove unnecessary ARM-specific targets
...
* NO_AES is determined automatically
* BUILD_64 is determined automatically
2016-06-23 17:01:31 -04:00
Ilya Kitaev
ab61ba0c9b
Merge branch 'master' of https://github.com/mbg033/bitmonero
2016-06-23 16:23:09 +03:00
Ilya Kitaev
d60864785f
WalletManager::findWallets: searching by "keys" files instead of
...
"address.txt" files
2016-06-23 16:01:41 +03:00
Ilya Kitaev
ca61153003
Wallet: payment id and integrated address
2016-06-23 16:01:41 +03:00
Ilya Kitaev
23cbf6fd97
PendingTransactionImpl: pointer->reference
2016-06-23 16:01:41 +03:00
Ilya Kitaev
c1d9e7cd2a
commented regex
2016-06-23 16:01:41 +03:00
Ilya Kitaev
563baf1b68
Typo fixed
2016-06-23 16:01:41 +03:00
Ilya Kitaev
2efec04f74
Wallet::createTransaction: added mixin_count param
2016-06-23 16:01:41 +03:00