No description provided.
MNEY fix linux build failure #14038
pull spyder46n2 wants to merge 549 commits into bitcoin:master from RavenProject:mney-fix.Linux.build.failure changing 1060 files +103738 −23710-
spyder46n2 commented at 9:24 PM on August 23, 2018: none
-
Unit Test Nonce, Raven-TX Linux Build, and Warning Fixes 136e1d8155
-
7fe5ac3f9a
Merge pull request #110 from RavenProject/mney-fix-tests.linux-build.doxygen.ravend-warning
Unit Test Nonce, Raven-TX Linux Build, and Warning Fixes
-
Fixes a couple of bugs. baec7494a7
-
Fixes bug with RPC help and BIP-9/RIP-2. 8cb343a650
-
85276179ea
Merge pull request #116 from RavenProject/cfox-bugfix
BIP-9/RIP-2 related bugfixes
-
40b65bccaf
QT: First iteration of assets view on overview tab (#115)
Asset balances on overview tab MVP.
-
Fix/change some error msgs e49fc398d1
-
Added rasberry pi build info - from community 3b76dfb819
-
Formatting rasberry pi build doc e2a03b0ab8
-
Set proposed mainnet activation ce6a10eb55
-
Fix rpc help 1da3b30f0a
-
Fixes asset_tests failure on unique due to dash in regex 887812c7d7
-
Update for UTC ce5348ca90
-
Fixed IPFS hash length (40->46). cead1f0cc5
-
a21ca127fc
Merge pull request #120 from RavenProject/tron-mainnet-assets
Set proposed mainnet activation
-
Fixed IPFS hash length (40->46). f0b9f7ed0c
-
77fa2f571b
Merge pull request #121 from RavenProject/tron-txt-fixes
Fix rpc help
-
Prevent RVN, RAVEN, RAVENCOIN as an asset 21adb8d339
-
967a96dacd
Merge pull request #125 from RavenProject/tron-prevent-confusing-rvn-asset
Prevent RVN, RAVEN, RAVENCOIN as an asset
-
8a46c82a63
Merge pull request #117 from RavenProject/tron-review-2
Fix/change some error msgs
-
RPC functions base58 decode IPFS hash inputs (46->34 bytes) and encode outputs (34->46 bytes). e824085e30
-
Add GUI for creation and reissue of an asset, Fix bug with reissue not saving to database ab8823211e
-
8addde4661
Merge pull request #123 from RavenProject/create_gui
Add GUI for creation and reissue of an asset, Fix bug with reissue no…
-
ccfee91834
Merge pull request #122 from RavenProject/mney-fix-asset-regex-test
Fixes asset_tests failure on unique due to dash in regex
-
Fixing build error from #125, adding test for RVN names, removing invalid reissue test, fixing help for optional params fa5bd58bc9
-
6cba8d9724
Merge pull request #126 from RavenProject/mney-fix-asset-regex-names
Fix asset regex names (fixes build errors from #125)
-
Merge branch 'develop' of github.com:RavenProject/Ravencoin into cfox-ipfs 69f6adfcaa
-
Merge branch 'develop' of github.com:RavenProject/Ravencoin into cfox-ipfs 70eed8a362
-
QT and decodescript IPFS hash fixes. ecd3f3205b
-
minor typos (#128) 691dd74eb8
-
83bdf74140
Revert "Merge #11167: Full BIP173 (Bech32) support"
This reverts commit aa624b61c928295c27ffbb4d27be582f5aa31b56, reversing changes made to a72003d794f39230db476d4f358eb244b7cb2d36.
-
Add change address to create asset rpc and gui implementation b51455e1bd
-
3f59315604
Merge pull request #127 from RavenProject/custom_change_address
Add change address to create asset rpc and gui implementation
-
Add GUI for reissue change address 33b5aad323
-
d8639116b2
Merge pull request #132 from RavenProject/reissue_change
Add GUI for reissue change address
-
Add change address to reissue rpc call f93671f938
-
Use real IPFS hashes a5133b7ed5
-
Merge branch 'develop' of github.com:RavenProject/Ravencoin into cfox-ipfs aad98210ca
-
ddd4f62219
Merge pull request #124 from RavenProject/cfox-ipfs
IPFS hash fixes
-
5909905d40
indexes: adds additional address, spent and timestamp indexes
Adds new bitcoin.conf configuration options for three new indexes: -addressindex=1 -spentindex=1 -timestampindex=1 The addressindex records all changes to an address for retrieving txids, balances and unspent outputs for addresses. Changes are stored and sorted in block order. Both p2sh and p2pkh address types are supported. The index records two sets of key/value pairs. The first records all activity and is useful for viewing transaction history and all changes. The second is specifically for retrieving unspent outputs by address, and is smaller as values are removed once they are spent. The spentindex has multiple purposes and brings closer together inputs and outputs of transactions. The main purpose is to efficiently determine the address and amount of an input's previous output. The second purpose is to be able to determine which input spent an output. The timestampindex keeps track of timestamps with block hashes and is useful for searching blocks by date instead of by height. This is useful for a block explorer that will give search options by date. The index uses logical time correction to make sure that the results are sorted in block order. The logical time of a block is actual timestamp of the block, unless it is less than (earlier) the previous block's logical time, and in that case it is one second greater than the previous block's logical time. Includes logical time fix by Chethan Krishna
-
c4dc80e1dc
rpc: adds rpc commands for address, spent and timestamp indexes
Adds new rpc commands that use the address, spent and timestamp indexes, including the new commands: - getblockdeltas - getblockhashes - getaddressmempool - getaddressutxos - getaddressdeltas - getaddressbalance - getaddresstxids - getspentinfo And modifications to the command: - getrawtransaction
-
indexes: additional logging and checks for indexes 77e2633379
-
3f68de56e8
validation: fix inconsistent update of address idx
On initial validation, the new core might trigger removal of transactions from indexes.
-
db: adds option maxFileSize 4e610feb7f
-
acc26be2ac
indexes: adds p2pk to addressindex
* Add simple test for p2pk script * Add p2pk transaction addresses indexing Addresses from p2pk transaction are now indexed by transations pubkeys hashes. Even if it isn't strict behavior and the p2pk are rare and obsolete, it is transaction that should be able to be looked up.
-
2892f2c9c1
tests: adds rpc tests for address, spent and timestamp indexes
Tests the functionality of the indexes as well as the rpc commands
-
tests: adds unit test for IsPayToPublicKeyHash method 9356c8f355
-
tests: adds unit test for IsPayToPublicKey method 3c6b8ef340
-
fbebaea63e
Merge #12495: Increase LevelDB max_open_files
ccedbaf Increase LevelDB max_open_files unless on 32-bit Unix. (Evan Klitzke) Pull request description: Currently we set `max_open_files = 64` on all architectures due to concerns about file descriptor exhaustion. This is extremely expensive due to how LevelDB is designed. When a LevelDB file handle is opened, a bloom filter and block index are decoded, and some CRCs are checked. Bloom filters and block indexes in open table handles can be checked purely in memory. This means that when doing a key lookup, if a given table file may contain a given key, all of the lookup operations can happen completely in RAM until the block itself is fetched. In the common case fetching the block is one disk seek, because the block index stores its physical offset. This is the ideal case, and what we want to happen as often as possible. If a table file handle is not open in the table cache, then in addition to the regular system calls to open the file, the block index and bloom filter need to be decoded before they can be checked. This is expensive and is something we want to avoid. The current setting of 64 file handles means that on a synced node, only about 4% of key lookups can be satisifed by table file handles that are actually open and in memory. The original concerns about file descriptor exhaustion are unwarranted on most systems because: * On 64-bit POSIX hosts LevelDB will open up to 1000 file descriptors using `mmap()`, and it does not retain an open file descriptor for such files. * On Windows non-socket files do not interfere with the main network `select()` loop, so the same fd exhaustion issues do not apply there. This change keeps the default `max_open_files` value (which is 1000) on all systems except 32-bit POSIX hosts (which do not use `mmap()`). Open file handles use about 20 KB of memory (for the block index), so the extra file handles do not cause much memory overhead. At most 1000 will be open, and a fully synced node right now has about 1500 such files. Profile of `loadblk` thread before changes: https://monad.io/maxopenfiles-master.svg Profile of `loadblk` thread after changes: https://monad.io/maxopenfiles-increase.svg Tree-SHA512: de54f77d57e9f8999eaf8d12592aab5b02f5877be8fa727a1f42cf02da2693ce25846445eb19eb138ce4e5045d1c65e14054df72faf3ff32c7655c9cfadd27a9
-
Start transfer asset GUI 1c3110645f
-
Modification to the rereserved raven/ravencoin names, modified tests to match c89d38e30a
-
Fixing Boost library link error when building with --enable-debug flag is specified on OSX f93bcd4348
-
Transfer GUI works. Fix bug with reindex and assets bc2bae68c1
-
Merge Develop 9831d9dbea
-
Remove commented out code 11955b2cdc
-
990d7f5adc
Merge pull request #133 from RavenProject/reissue_change_rpc
Add change address to reissue rpc call and Start transfer GUI
-
69bc549007
Merge pull request #135 from RavenProject/mney-change-reserved-raven-names
MNEY - change reserved raven names
-
80f4bd586b
Merge pull request #136 from RavenProject/mney-fix-OSX-debug-build
Fixing Boost library link error when building with --enable-debug fla…
-
Change useragent 7626c4c518
-
Update version to reflect new scheme major.minor.build 70f73fd2a9
-
Update year 32f316f755
-
af50a706fc
Merge pull request #131 from underdarkskies/insight-final
Insight final - tested on merge with develop branch.
-
Disable or remove assets from GUI unless is it Active 6e972c9ac2
-
Update block version once assets go active 7637a94132
-
fbd2197407
QT: show asset transactions on overview and transaction tabs (#139)
* Showing asset transactions on overview and transaction tabs.
-
Merge Develop e1526c88e7
-
e465c6ec82
Merge pull request #140 from RavenProject/update_asset_gui
Remove assets info from gui until assets are active
-
ef85d429f0
Reserving RVNX asset scripts by treating them as standard no-ops (#142)
* Treating RVNX asset scripts as standard (do nothing) scripts for future compatibility. * Overloaded IsAssetNameValid() returns an asset type; restricting current opertions to ROOT type assets. * Fixed a typo and a test case.
-
5df542987a
Merge pull request #137 from RavenProject/tron-modify-useragent
Tron modify useragent
-
61d4b38676
Merge pull request #141 from RavenProject/update_block_version
Update block version once assets go active
-
add metadata spec 76fd6fa47b
-
fd0bd1b651
Merge pull request #143 from RavenProject/tron-metadata
add metadata spec
-
Update Protocol Version 85c4cf2e1e
-
Asset data to overview page 146de0bf21
-
c69cd026d7
Merge pull request #144 from RavenProject/add_asset_status
Asset data to overview page
-
QT: Dynamically showing asset transaction related GUI elements when assets are activated. (#145) d6c49ed373
-
710cc7b758
GetMyAssetBalances() no longer returns zero balances. (#148)
(even if zero balance is still cached)
-
Fixes bug in decodescript for owner outputs. (#147) 79f2f2b333
-
9da1a705c3
Merge pull request #146 from RavenProject/protocol_bumb_70016
Update Protocol Version
-
Fix Database Corruption Error 34f6e4382b
-
98f37ea567
Merge pull request #149 from RavenProject/fix_db_corruption
Fix Database Corruption Error
-
Update asset display info when a new block comes in 94e4ad2504
-
Revert blockundo change. Use seperate database for asset undo data bdc75a26cc
-
a981186463
Merge pull request #150 from RavenProject/asset_display_info
Update asset display info when a new block comes in
-
8a76ee3b5f
Merge pull request #152 from RavenProject/asset_undo_data
Revert blockundo change. Use seperate database for asset undo data
-
Fix create asset check availability bug 7051ce6f6e
-
Remove send asset dialog qt connect display unit 043593f5b6
-
Asset tab hover text bee2712ef0
-
Update asset tab text 2146082c3e
-
Fix some metadata, and add a new field. c7ad3eb475
-
601c5cdcd2
Merge pull request #153 from RavenProject/gui_check_availability
Fix create asset check availability bug
-
Fix undo transfer bug, Fix transfer adding more than needed inputs 426cc0b7ba
-
7a1a0864cd
Merge pull request #155 from RavenProject/blondfrogs_trasnfer_asset_bug
Fix undo transfer bug, Fix transfer adding more than needed inputs
-
b3e24e4e98
Merge pull request #79 from fokep/master
Update README.md - Verified howto for CentOS 7
-
Attempting to find boost interruption_point() in windows build. afaa561fc0
-
Removes some unused imports. 7d7f16b4f2
-
Update send dialogs, for create, reissue, and transfer assets 61c0f58db9
-
a942cfede3
Merge pull request #156 from RavenProject/cfox-windows-fix
Fixes windows build problems
-
74079801de
repair depends system (#154)
* repair depends system this fixes the incorrectly named files in the depends build process, as well as updates the QT repo location so that depends build are sucessful * Merge #13177: GCC-7 and glibc-2.27 back compat code 253f5929097548fb10ef995002dedbb8dadb6a0d Add stdin, stdout, stderr to ignored export list (Chun Kuan Lee) fc6a9f2ab18ca8466d65d14c263c4f78f9ccebbf Use IN6ADDR_ANY_INIT instead of in6addr_any (Cory Fields) 908c1d7745f0ed117b0374fcc8486f83bf743bfc GCC-7 and glibc-2.27 compat code (Chun Kuan Lee) Pull request description: The `__divmoddi4` code was modified from https://github.com/gcc-mirror/gcc/blob/master/libgcc/libgcc2.c . I manually find the older glibc version of log2f by objdump, use `.symver` to specify the certain version. Tree-SHA512: e8d875652003618c73e019ccc420e7a25d46f4eaff1c7a1a6bfc1770b3b46f074b368b2cb14df541b5ab124cca41dede4e28fe863a670589b834ef6b8713f9c4
-
6e600db09d
Merge pull request #157 from RavenProject/update_qt_asset_dialogs
Update send dialogs, for create, reissue, and transfer assets
-
5455db7b1f
Functional test for issue, reissue and transfer of assets via raw transactions. (#151)
* Verifies that scriptSig tampering voids transfer. * Verifies that asset script tampering voids transfer.
-
10ba6e448f
Update README.md
First edits of Bitcoin descriptor content
-
e7626a9054
Update README.md
Description of project
-
Update README.md 1cc84318da
-
Update README.md 0c063e2e0b
-
Update README.md 6d22771ee4
-
Create about 818333054b
-
prepped binaries directory df8e5b34df
-
Initial Binary release c25a9790b0
-
Removed ignore of executables bcaa7cb03c
-
fix for pre-release message on cli 500f742142
-
Changed name/symbol example to Bitcoin | BTC f21ae78568
-
1cd8682225
Merge pull request #158 from mcmurrak/patch-1
Changed name/symbol example to Bitcoin/BTC
-
Initial raven source commit ab159fd054
-
Moved the binary releases back into the binaries directory 2cd15ff9ea
-
Added linux QT apps and an updated Mac QT app 39fd9753f2
-
Update README 84b668e73c
-
fixed ppa to use when building for *nix 8f075fd675
-
03356d9141
Update build-osx.md
Update Mac instructions to use correct directory name. Closes #9.
-
Added new binaries for testnet 1b5d2bc563
-
fixes for testnet c0f92806c6
-
updated the mac binaries for testnet 9ebf30400b
-
87402d78c0
Disable the miner in the wallet by default
Disables the miner(by default, it still can be enabled), as CPU mining is no longer profitable.
-
Update README.md 0bc290038e
-
Added getinfo back bd176217ed
-
d55e02307f
Fixed spelling error
- changed etherium spelling to ethereum
-
Dev mailing list doesn't exist (yet?) 4df74ff233
-
new builds to include bug fixes 2748843db4
-
Remove old binary locations as linux is now in a dedicated linux folder. these have not been updated and the new ones are in proper linux folder for new builds 4e40c63233
-
d6fa19b045
Update Readme
Tweaked Readme for DMG name and instruction set.
-
New release to remove mining by default a1aff056ec
-
Fixing darwin build with https://github.com/bitcoin/bitcoin/pull/12032 e5c020143c
-
Moving release binaries to the proper github location. 411357765c
-
Added readme to redirect to releases tab af7ca345b7
-
added whitepaper 91185a59b9
-
Added Raven roadmap 9e50052bb8
-
Fixed date typo 0fac8474c9
-
54e61cb2fb
Update README.md
Fixed Title centering
-
Fix typo in roadmap 0c0765d66c
-
ef698bdba3
Update README.md
Fixed formatting
-
Update README.md e01643107a
-
Update README.md af226e70c6
-
Update README.md 0455fad6f1
-
Removed obsolete binaries dir 3ffecef1ba
-
Removed leftover windows binaries 7748904f3b
-
Cleaning out win bins 9c36bebb15
-
Cleaning out windoze bins 58a9e46065
-
Moved content from binaries/release/mac/README.md to doc/README.md 3f2f66ea58
-
update README 17dfeec710
-
Update README.md 8310c15389
-
Restoring binaries/README.md to avoid breaking the download link from website.... 0034dc4815
-
Update README.md b8b0fcf16d
-
Update README.md 19377b992f
-
Update README.md b7a740a464
-
d47b033835
Update of README.md
Changed links to have absolute paths so the readme can be safely included with releases
-
Update README.md addb82e5c6
-
Update README.md dcc1ea239c
-
Update README.md 9edcfebf4c
-
Update README.md ade4005ab6
-
Update CONTRIBUTING.md 9614c011e3
-
Added rasberry pi build info - from community 308820515b
-
Formatting rasberry pi build doc 284ba7670d
-
Merge branch 'master' into master-rebased e46a1a7ef2
-
Whitespace fixes. 92ee83a7fc
-
Whitespace fixes. ec37d48f41
-
Remove a term of art 6965ab033a
-
Remove a term of art (#160) d002dbe77e
-
Fix ability to be able to send assets to same address they are being spent from d87a819609
-
048908feed
Merge pull request #162 from RavenProject/fix_db_change_address_bug
Fix ability to be able to send assets to same address they are being …
-
Able to parse 21 billion (max asset qty). (#163) 26241b26b2
-
eb754b3299
fix depends environment
rename from bitcoin-> raven -cleanup a type in Makefile
-
a899f597c7
reAdd gen.cpp
gen.cpp is required for `make dist`
-
dc2bcb2c17
renaming and fixes
rename bitcoin->raven -and- ensure md_helper.c gets included in `make dist` builds
-
1cc1165beb
finalize macdeploy changes
updated macdeployqtplus to python3 fix backgroundImageAlias bytelength (7 chars require)
-
Moving to DGW when RIP-2 is activated. (#161) 00ffd2b9c1
-
Fix Splash Screen Logo positioning and aliasing (#166) 32eeb90306
-
Add regtest mining shortcut to assets tab 9e4e3c3e41
-
838cb090ee
Merge pull request #167 from RavenProject/debug_mining_shortcut
Add regtest mining shortcut to assets tab
-
QT: revised asset in/out tx icons. 7270cfe4a9
-
42d247fbec
Merge pull request #168 from RavenProject/cfox-asset-tx-icons
QT: revised asset in/out tx icons.
-
416aa009ca
Merge pull request #164 from underdarkskies/macosx-buildfix
enable MacOS crosscompile builds from ubuntu18
-
Doc updates. (#170) 1f68d730cb
-
QT: revised asset in/out tx icons. (#171) 5e08051ce0
-
c2dab4890f
Merge pull request #172 from RavenProject/release
Merge 2.0.1 release branch to master
-
Testing sub assets 8ec7550a9d
-
Fix sync issue caused by DGW 75c3442091
-
Add mining logs to debug=net f000fcc88d
-
1a30524c40
Merge pull request #182 from RavenProject/dwg-sync-fix
Dwg sync fix
-
Add subassets rpc, fix ownership asset database problem 4f72e4bbd7
-
Remove spam logs af84a7f499
-
Remove spam logs 8f61c10ae5
-
Fix large asset transactions failing asset check and asset serialization 8293f6fe8f
-
9fd33dad8f
Switching to DGW at a specific block.
Widens N from 60 to 180 minutes for DGW. Future block rejection changed from 120 min to 12 min for DGW.
-
Under fix to CHANNEL namespace b760682473
-
h b35bd9b167
-
9fd7e5468c
Merge pull request #197 from RavenProject/under-channel-namespace-fix
Under channel namespace fix
-
31eb2b5be5
Merge pull request #195 from RavenProject/cfox-rip9v2
Switching to DGW at a specific block.
-
Update regex to disallow improper asset names d8027a2765
-
Add back $ to regex expression ee999c5231
-
Add -fPIC as default on Linux builds to avoid build errors. Add additional NONCE for miner tests. 82c11a6736
-
b8aad202fa
Merge pull request #199 from RavenProject/revert-fpic
Add -fPIC as default on Linux builds to avoid build errors. Add addi…
-
Set reissuable to true by default, update typos 38b322dd3d
-
Quick bug fix for creating new asset with ! in it. Fix typo 9883ee221a
-
Remove commented out code 45b034669c
-
ed0ea50fb9
Merge pull request #196 from RavenProject/sub_asset_2
Ability to Create Sub Assets via RPC. Fix large Asset Transactions
-
b3a6fa2eab
Fixed/ Edited a few things
Fixed a date and added a few things
-
Fixed typo 19a96f6ced
-
7b62d978ae
Merge pull request #201 from RavenProject/typo_fixes
Typo fixes made by UsertJonPizza
-
f95a36cf27
Testnetv4 and some block timing for DGW (#200)
* Testnetv4 and some block timing for DGW.
-
Add sub assets to func test (#202) c344555e36
-
One command 59a393fab0
-
Fixes a test case. c94460ad65
-
7b69824948
Merge pull request #204 from RavenProject/tron-issuesubasset-to-issue
One command
-
Removes some noise on stdout. 799a9b275e
-
Updated version to 2.0.3 25be212adc
-
Add asset issuance scripts 8930753797
-
Include some documentation on scripts c3c372e11c
-
fix md fc169bc644
-
9bd3cc8555
Merge pull request #205 from RavenProject/cfox-cleanup
Removes some noise on stdout.
-
fix_db_asset_spends 6f59415441
-
9192c6cbe2
Merge pull request #214 from RavenProject/bug_210
Fix for bug 210
-
39d87457eb
Merge pull request #215 from RavenProject/develop2
Merge new bug fixes into release 2.0.3 branch
-
Fix chain syncing errors 018b922d58
-
Fix qt formatting amount 584b451548
-
fa50d36d71
Functional asset transfer tests (#221)
* Functional asset transfer tests covering: Asset inputs and outputs not summing up in total. Asset input and output amounts using wrong units. * Removed some asset related unit tests which have moved into functional tests.
-
31ba698c1e
Merge pull request #223 from RavenProject/bug_fixes_release_2_0_3
Fix chain syncing with blocks that are being received before they are connected
-
Fix null pointer check before accessing pointer object f690fb5b4b
-
7bf0721d19
Merge pull request #225 from RavenProject/bug_null_pointer_fix
Fix reindex segfault when using build from ubuntu 18.04
-
Add pointer protection before accessing pointer c1da31c2a4
-
dacb7accdc
Merge pull request #227 from RavenProject/unprotected_pointer
Add pointer protection before accessing pointer
-
3dc585a366
Tron version and depth (#226)
* Increase chaining depth defaults * Increment version - increase chaining depth
-
01a355bf91
functional test fixes (#228)
* Fixes blockchain func test by adding missing new blockchaininfo key. * Fixes p2p-leaktests wrt (now not unsupported) service bits. Fixes regtest chainparams asset voting bit to match main, test (4 -> 5). * Upgrades index tests to use current framework and fixes a btc->rvn bug in txindex.
-
Modify to work default with testnet 4f089b574d
-
7cde3ea9c3
Merge pull request #213 from RavenProject/tron-asset-scripts
Tron asset scripts
-
Fix database, fix unit tests 0789fc8cc9
-
b265da93b2
Merge pull request #230 from RavenProject/database_bug_fix_2_0_4
Fix asset database error, fix unit tests
-
cf65ceca0e
Merge pull request #231 from RavenProject/release_2.0.4
Release 2.0.4 back to develop2
-
9843103a0a
Allow Asset Tx Chaining (#237)
* Add ability to chain asset transaction just like you can chain RVN transactions
-
Fix mempool_limit test d836d858ad
-
01efaa5c7c
invoke python interpreter
python scripts should invoke the python interpreter. hopefully these are written in python3, if not adjust.
-
ba31e3c08f
Merge pull request #241 from underdarkskies/Python
invoke python interpreter
-
d050c44ba1
Update Asset RPC man (#239)
Changes the descriptors to the standard "numeric" which is used to denote either Float or Integer in the rest of the codebase, as issue and reissue and transfer all accept non integer values
-
23ee8fb45c
Merge pull request #240 from RavenProject/mney-fix-functional-test
Fix test_runner-configure, mempool_limit test, and add nonce to miner_tests
-
Adding release notes for the 2.0.4 release f2cde1b9d6
-
Updating verbage as per cfox's suggestion 1cbee6c77e
-
92390ac546
Merge pull request #242 from RavenProject/mney-add-2.0.4-release-notes
Add 2.0.4 release notes
-
f2a0d74c09
Remove the ability to chain reissue transactions (#245)
* Don't allow reissue chaining
-
393aa8ab76
Add ability to create assets of other types with the GUI (#243)
* Add ability to create assets of other types with the GUI
-
Check Units when issuing assets (#249) 16ed3ca602
-
Fixing Linux build errror - missing string include in header 6aef69fb55
- DrahtBot added the label Needs rebase on Aug 23, 2018
-
DrahtBot commented at 9:48 PM on August 23, 2018: member
<!--cf906140f33d8803c4a75a2196329ecb-->Needs rebase
- spyder46n2 closed this on Aug 23, 2018
- spyder46n2 deleted the branch on Aug 23, 2018
- fanquake locked this on Aug 26, 2018
- fanquake removed the label Needs rebase on Aug 26, 2018
Contributors