Zachary Michaels
2796a7f015
Add get_info command to daemon json rpc
2014-07-22 14:00:10 -04:00
mikezackles
04c46fd46a
Merge pull request #66 from mikezackles/master
...
Add get_bulk_payments rpc call
2014-07-22 12:19:20 -04:00
Zachary Michaels
12596ad566
Add get_bulk_payments rpc call
2014-07-22 12:16:15 -04:00
Thomas Winget
1c33b6cbee
Merge pull request #65 from tewinget/daemon_rpc
...
Added get_connections RPC call to daemon
Only consists of new functionality and doesn't break build, merging per request.
2014-07-18 19:35:45 -04:00
Thomas Winget
9f88b7ce6b
Added get_connections RPC call to daemon
2014-07-18 19:33:03 -04:00
mikezackles
905b67bc79
Merge pull request #63 from mikezackles/bytecoin_for_merge
...
Misc fixes from bytecoin
2014-07-17 19:23:49 -04:00
Zachary Michaels
61e447f7c8
Remove dead code
2014-07-17 19:18:24 -04:00
Zachary Michaels
e48cf2a3a9
Remove second tx size check
2014-07-17 18:47:18 -04:00
Zachary Michaels
23c914ccfe
Don't check max tx size when adding to block
...
This is now done when adding transactions to the pool.
2014-07-17 17:11:21 -04:00
Zachary Michaels
e3b8c58496
Don't check for min fee when adding tx to block
...
This is now done when transactions enter the pool.
2014-07-17 17:10:35 -04:00
Zachary Michaels
232e23e90f
Decrease max block size from 200% median to 130%
2014-07-17 16:56:31 -04:00
Zachary Michaels
c017bb0656
Use print_money in log
2014-07-17 16:56:28 -04:00
Zachary Michaels
d9f3421ce7
Minimum tx fee for entering pool
2014-07-17 16:55:40 -04:00
Zachary Michaels
8e99cee062
Start fresh if tx_pool deserialize fails
2014-07-17 16:53:48 -04:00
Zachary Michaels
a3f5764869
Add transaction size limit
...
Transactions larger than the limit will not enter the pool
2014-07-17 16:53:48 -04:00
Zachary Michaels
4d25350a82
Use const where appropriate in tx_pool
2014-07-17 16:31:31 -04:00
Zachary Michaels
9872d205ff
Make some tx_pool methods static
2014-07-17 14:02:17 -04:00
Zachary Michaels
85a04cb168
Make some tx_pool methods private
2014-07-17 11:25:41 -04:00
Thomas Winget
c6ffd810af
Merge pull request #56 from tewinget/master
...
transaction splitting
2014-07-06 13:13:06 -04:00
Zachary Michaels
a016499a0e
Fix thread count argument handling in simplewallet
2014-07-01 14:57:27 -04:00
Zachary Michaels
dee9abcd60
Match empty RPC request with other requests
2014-07-01 14:57:27 -04:00
Zachary Michaels
efad8c9f31
Switch list to vector for RPC serialization
2014-07-01 14:57:27 -04:00
Zachary Michaels
034a1a865e
Allow conditional compilation with VS 2013+
2014-07-01 14:57:27 -04:00
Zachary Michaels
a633c11cbb
Remove unused function
2014-07-01 14:57:27 -04:00
Zachary Michaels
7259f07a20
Fix assert bug in base58 encode
...
The previous implementation was almost certainly a typo.
full_block_size is the maximum index in the encoded_block_sizes array,
and size is used as an index in this array. So now 1 <= size <=
full_block_size == 8 instead of 1 <= size <= sizeof(full_block_size) ==
size_of(size_t) == ? (maybe 4 on 32-bit systems!)
2014-07-01 14:57:27 -04:00
Zachary Michaels
26c83c5dea
Explicit namespaces
2014-07-01 14:57:27 -04:00
Zachary Michaels
28af03208b
Remove redeclaration
2014-07-01 14:57:26 -04:00
Zachary Michaels
b1413fd045
C++ style cast
2014-07-01 14:57:26 -04:00
Zachary Michaels
b3092d4e00
Comment unused functions in cryptonote_core
2014-07-01 14:57:26 -04:00
Zachary Michaels
e344b9c734
Improved (fixed?) serialization for vec<uint32_t>
2014-07-01 14:57:26 -04:00
Zachary Michaels
f98c8abf42
Add missing pragma
2014-07-01 14:57:26 -04:00
Zachary Michaels
5fca5a0e5d
Add missing pragma
2014-07-01 14:57:26 -04:00
Zachary Michaels
aaced6ff9b
Add missing pragma
2014-07-01 14:57:26 -04:00
Zachary Michaels
17f0967472
Allow priority peers when there are exclusive peers
...
Per my reading this change makes sense since a subset of the exclusive
peers could be priority peers. Priority peers that are not exclusive
will not get loaded, and priority peers that *are* exclusive will get
special treatment. Prior to this change it looks like priority peers
were silently ignored when exclusive peers were provided.
2014-07-01 14:57:26 -04:00
Zachary Michaels
bd7d20a58a
Explicit error constructors
2014-07-01 14:57:25 -04:00
Zachary Michaels
849c52c7ed
Remove unused array in cn_slow_hash
2014-07-01 14:57:25 -04:00
Thomas Winget
45bd182363
needed to remove REQUIRED from find_package(Threads)
2014-06-30 07:23:49 -04:00
Thomas Winget
d433a696e5
wallet RPC converted to use new transaction semantics
...
wallet RPC now uses wallet2::create_transactions and wallet2::commit_tx instead
of wallet2::transfer. This made it possible to add the RPC call /transfer_split, which
will split transactions automatically if they are too large. The old call to
/transfer will return an error stating to use /transfer_split if multiple
transactions are needed to fulfill the request.
2014-06-30 07:16:50 -04:00
Thomas Winget
2011b50280
removed erroneous printing of newlines
2014-06-30 07:16:50 -04:00
Thomas Winget
7c7696a830
missed removing a debug print
2014-06-30 07:16:50 -04:00
Thomas Winget
e5ab98a6f4
removed some debugging code (really stupid printf-style debuggng..
2014-06-30 07:16:50 -04:00
tom
62109840d6
Transaction splitting *seems* to be working!!!
2014-06-30 07:16:50 -04:00
Thomas Winget
9bfe0b9b6c
Added confirmation prompt if transactions are to be split
2014-06-30 07:16:50 -04:00
Thomas Winget
002ce963bf
added back successful tx message. oops.
2014-06-30 07:16:50 -04:00
Thomas Winget
8166650ae0
up tx splits limit 5 -> 30
2014-06-30 07:16:50 -04:00
Thomas Winget
2e048a4679
final changes to get transaction splitting building. needs testing.
2014-06-30 07:16:50 -04:00
tom
79e59d155b
working on dividing functions in prep for tx splitting
2014-06-30 07:16:50 -04:00
Thomas Winget
fc1180bc6c
Added comments to wallet functions
2014-06-30 07:16:50 -04:00
Thomas Winget
4c67dbb08e
Merge pull request #55 from monero-project/revert-54-master
...
Revert "Do not fall over when refreshing balance fails"
2014-06-30 06:47:48 -04:00
Thomas Winget
55721da1fd
Revert "Do not fall over when refreshing balance fails"
2014-06-30 06:45:20 -04:00