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
  1. spyder46n2 commented at 9:24 PM on August 23, 2018: none

    No description provided.

  2. Unit Test Nonce, Raven-TX Linux Build, and Warning Fixes 136e1d8155
  3. Merge pull request #110 from RavenProject/mney-fix-tests.linux-build.doxygen.ravend-warning
    Unit Test Nonce, Raven-TX Linux Build, and Warning Fixes
    7fe5ac3f9a
  4. Fixes a couple of bugs. baec7494a7
  5. Fixes bug with RPC help and BIP-9/RIP-2. 8cb343a650
  6. Merge pull request #116 from RavenProject/cfox-bugfix
    BIP-9/RIP-2 related bugfixes
    85276179ea
  7. QT: First iteration of assets view on overview tab (#115)
    Asset balances on overview tab MVP.
    40b65bccaf
  8. Fix/change some error msgs e49fc398d1
  9. Added rasberry pi build info - from community 3b76dfb819
  10. Formatting rasberry pi build doc e2a03b0ab8
  11. Set proposed mainnet activation ce6a10eb55
  12. Fix rpc help 1da3b30f0a
  13. Fixes asset_tests failure on unique due to dash in regex 887812c7d7
  14. Update for UTC ce5348ca90
  15. Fixed IPFS hash length (40->46). cead1f0cc5
  16. Merge pull request #120 from RavenProject/tron-mainnet-assets
    Set proposed mainnet activation
    a21ca127fc
  17. Fixed IPFS hash length (40->46). f0b9f7ed0c
  18. Merge pull request #121 from RavenProject/tron-txt-fixes
    Fix rpc help
    77fa2f571b
  19. Prevent RVN, RAVEN, RAVENCOIN as an asset 21adb8d339
  20. Merge pull request #125 from RavenProject/tron-prevent-confusing-rvn-asset
    Prevent RVN, RAVEN, RAVENCOIN as an asset
    967a96dacd
  21. Merge pull request #117 from RavenProject/tron-review-2
    Fix/change some error msgs
    8a46c82a63
  22. RPC functions base58 decode IPFS hash inputs (46->34 bytes) and encode outputs (34->46 bytes). e824085e30
  23. Add GUI for creation and reissue of an asset, Fix bug with reissue not saving to database ab8823211e
  24. Merge pull request #123 from RavenProject/create_gui
    Add GUI for creation and reissue of an asset, Fix bug with reissue no…
    8addde4661
  25. Merge pull request #122 from RavenProject/mney-fix-asset-regex-test
    Fixes asset_tests failure on unique due to dash in regex
    ccfee91834
  26. Fixing build error from #125, adding test for RVN names, removing invalid reissue test, fixing help for optional params fa5bd58bc9
  27. Merge pull request #126 from RavenProject/mney-fix-asset-regex-names
    Fix asset regex names (fixes build errors from #125)
    6cba8d9724
  28. Merge branch 'develop' of github.com:RavenProject/Ravencoin into cfox-ipfs 69f6adfcaa
  29. Merge branch 'develop' of github.com:RavenProject/Ravencoin into cfox-ipfs 70eed8a362
  30. QT and decodescript IPFS hash fixes. ecd3f3205b
  31. minor typos (#128) 691dd74eb8
  32. Revert "Merge #11167: Full BIP173 (Bech32) support"
    This reverts commit aa624b61c928295c27ffbb4d27be582f5aa31b56, reversing
    changes made to a72003d794f39230db476d4f358eb244b7cb2d36.
    83bdf74140
  33. Add change address to create asset rpc and gui implementation b51455e1bd
  34. Merge pull request #127 from RavenProject/custom_change_address
    Add change address to create asset rpc and gui implementation
    3f59315604
  35. Add GUI for reissue change address 33b5aad323
  36. Merge pull request #132 from RavenProject/reissue_change
    Add GUI for reissue change address
    d8639116b2
  37. Add change address to reissue rpc call f93671f938
  38. Use real IPFS hashes a5133b7ed5
  39. Merge branch 'develop' of github.com:RavenProject/Ravencoin into cfox-ipfs aad98210ca
  40. Merge pull request #124 from RavenProject/cfox-ipfs
    IPFS hash fixes
    ddd4f62219
  41. 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
    5909905d40
  42. 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
    c4dc80e1dc
  43. indexes: additional logging and checks for indexes 77e2633379
  44. validation: fix inconsistent update of address idx
    On initial validation, the new core might trigger removal of transactions from indexes.
    3f68de56e8
  45. db: adds option maxFileSize 4e610feb7f
  46. 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.
    acc26be2ac
  47. tests: adds rpc tests for address, spent and timestamp indexes
    Tests the functionality of the indexes as well as the rpc commands
    2892f2c9c1
  48. tests: adds unit test for IsPayToPublicKeyHash method 9356c8f355
  49. tests: adds unit test for IsPayToPublicKey method 3c6b8ef340
  50. 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
    fbebaea63e
  51. Start transfer asset GUI 1c3110645f
  52. Modification to the rereserved raven/ravencoin names, modified tests to match c89d38e30a
  53. Fixing Boost library link error when building with --enable-debug flag is specified on OSX f93bcd4348
  54. Transfer GUI works. Fix bug with reindex and assets bc2bae68c1
  55. Merge Develop 9831d9dbea
  56. Remove commented out code 11955b2cdc
  57. Merge pull request #133 from RavenProject/reissue_change_rpc
    Add change address to reissue rpc call and Start transfer GUI
    990d7f5adc
  58. Merge pull request #135 from RavenProject/mney-change-reserved-raven-names
    MNEY - change reserved raven names
    69bc549007
  59. Merge pull request #136 from RavenProject/mney-fix-OSX-debug-build
    Fixing Boost library link error when building with --enable-debug fla…
    80f4bd586b
  60. Change useragent 7626c4c518
  61. Update version to reflect new scheme major.minor.build 70f73fd2a9
  62. Update year 32f316f755
  63. Merge pull request #131 from underdarkskies/insight-final
    Insight final - tested on merge with develop branch.
    af50a706fc
  64. Disable or remove assets from GUI unless is it Active 6e972c9ac2
  65. Update block version once assets go active 7637a94132
  66. QT: show asset transactions on overview and transaction tabs (#139)
    * Showing asset transactions on overview and transaction tabs.
    fbd2197407
  67. Merge Develop e1526c88e7
  68. Merge pull request #140 from RavenProject/update_asset_gui
    Remove assets info from gui until assets are active
    e465c6ec82
  69. 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.
    ef85d429f0
  70. Merge pull request #137 from RavenProject/tron-modify-useragent
    Tron modify useragent
    5df542987a
  71. Merge pull request #141 from RavenProject/update_block_version
    Update block version once assets go active
    61d4b38676
  72. add metadata spec 76fd6fa47b
  73. Merge pull request #143 from RavenProject/tron-metadata
    add metadata spec
    fd0bd1b651
  74. Update Protocol Version 85c4cf2e1e
  75. Asset data to overview page 146de0bf21
  76. Merge pull request #144 from RavenProject/add_asset_status
    Asset data to overview page
    c69cd026d7
  77. QT: Dynamically showing asset transaction related GUI elements when assets are activated. (#145) d6c49ed373
  78. GetMyAssetBalances() no longer returns zero balances. (#148)
    (even if zero balance is still cached)
    710cc7b758
  79. Fixes bug in decodescript for owner outputs. (#147) 79f2f2b333
  80. Merge pull request #146 from RavenProject/protocol_bumb_70016
    Update Protocol Version
    9da1a705c3
  81. Fix Database Corruption Error 34f6e4382b
  82. Merge pull request #149 from RavenProject/fix_db_corruption
    Fix Database Corruption Error
    98f37ea567
  83. Update asset display info when a new block comes in 94e4ad2504
  84. Revert blockundo change. Use seperate database for asset undo data bdc75a26cc
  85. Merge pull request #150 from RavenProject/asset_display_info
    Update asset display info when a new block comes in
    a981186463
  86. Merge pull request #152 from RavenProject/asset_undo_data
    Revert blockundo change. Use seperate database for asset undo data
    8a76ee3b5f
  87. Fix create asset check availability bug 7051ce6f6e
  88. Remove send asset dialog qt connect display unit 043593f5b6
  89. Asset tab hover text bee2712ef0
  90. Update asset tab text 2146082c3e
  91. Fix some metadata, and add a new field. c7ad3eb475
  92. Merge pull request #153 from RavenProject/gui_check_availability
    Fix create asset check availability bug
    601c5cdcd2
  93. Fix undo transfer bug, Fix transfer adding more than needed inputs 426cc0b7ba
  94. Merge pull request #155 from RavenProject/blondfrogs_trasnfer_asset_bug
    Fix undo transfer bug, Fix transfer adding more than needed inputs
    7a1a0864cd
  95. Merge pull request #79 from fokep/master
    Update README.md - Verified howto for CentOS 7
    b3e24e4e98
  96. Attempting to find boost interruption_point() in windows build. afaa561fc0
  97. Removes some unused imports. 7d7f16b4f2
  98. Update send dialogs, for create, reissue, and transfer assets 61c0f58db9
  99. Merge pull request #156 from RavenProject/cfox-windows-fix
    Fixes windows build problems
    a942cfede3
  100. 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
    74079801de
  101. Merge pull request #157 from RavenProject/update_qt_asset_dialogs
    Update send dialogs, for create, reissue, and transfer assets
    6e600db09d
  102. 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.
    5455db7b1f
  103. Update README.md
    First edits of Bitcoin descriptor content
    10ba6e448f
  104. Update README.md
    Description of project
    e7626a9054
  105. Update README.md 1cc84318da
  106. Update README.md 0c063e2e0b
  107. Update README.md 6d22771ee4
  108. Create about 818333054b
  109. prepped binaries directory df8e5b34df
  110. Initial Binary release c25a9790b0
  111. Removed ignore of executables bcaa7cb03c
  112. fix for pre-release message on cli 500f742142
  113. Changed name/symbol example to Bitcoin | BTC f21ae78568
  114. Merge pull request #158 from mcmurrak/patch-1
    Changed name/symbol example to Bitcoin/BTC
    1cd8682225
  115. Initial raven source commit ab159fd054
  116. Moved the binary releases back into the binaries directory 2cd15ff9ea
  117. Added linux QT apps and an updated Mac QT app 39fd9753f2
  118. Update README 84b668e73c
  119. fixed ppa to use when building for *nix 8f075fd675
  120. Update build-osx.md
    Update Mac instructions to use correct directory name.
    
    Closes #9.
    03356d9141
  121. Added new binaries for testnet 1b5d2bc563
  122. fixes for testnet c0f92806c6
  123. updated the mac binaries for testnet 9ebf30400b
  124. 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.
    87402d78c0
  125. Update README.md 0bc290038e
  126. Added getinfo back bd176217ed
  127. Fixed spelling error
    - changed etherium spelling to ethereum
    d55e02307f
  128. Dev mailing list doesn't exist (yet?) 4df74ff233
  129. new builds to include bug fixes 2748843db4
  130. 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
  131. Update Readme
    Tweaked Readme for DMG name and instruction set.
    d6fa19b045
  132. New release to remove mining by default a1aff056ec
  133. Fixing darwin build with https://github.com/bitcoin/bitcoin/pull/12032 e5c020143c
  134. Moving release binaries to the proper github location. 411357765c
  135. Added readme to redirect to releases tab af7ca345b7
  136. added whitepaper 91185a59b9
  137. Added Raven roadmap 9e50052bb8
  138. Fixed date typo 0fac8474c9
  139. Update README.md
    Fixed Title centering
    54e61cb2fb
  140. Fix typo in roadmap 0c0765d66c
  141. Update README.md
    Fixed formatting
    ef698bdba3
  142. Update README.md e01643107a
  143. Update README.md af226e70c6
  144. Update README.md 0455fad6f1
  145. Removed obsolete binaries dir 3ffecef1ba
  146. Removed leftover windows binaries 7748904f3b
  147. Cleaning out win bins 9c36bebb15
  148. Cleaning out windoze bins 58a9e46065
  149. Moved content from binaries/release/mac/README.md to doc/README.md 3f2f66ea58
  150. update README 17dfeec710
  151. Update README.md 8310c15389
  152. Restoring binaries/README.md to avoid breaking the download link from website.... 0034dc4815
  153. Update README.md b8b0fcf16d
  154. Update README.md 19377b992f
  155. Update README.md b7a740a464
  156. Update of README.md
    Changed links to have absolute paths so the readme can be safely included with releases
    d47b033835
  157. Update README.md addb82e5c6
  158. Update README.md dcc1ea239c
  159. Update README.md 9edcfebf4c
  160. Update README.md ade4005ab6
  161. Update CONTRIBUTING.md 9614c011e3
  162. Added rasberry pi build info - from community 308820515b
  163. Formatting rasberry pi build doc 284ba7670d
  164. Merge branch 'master' into master-rebased e46a1a7ef2
  165. Whitespace fixes. 92ee83a7fc
  166. Whitespace fixes. ec37d48f41
  167. Remove a term of art 6965ab033a
  168. Remove a term of art (#160) d002dbe77e
  169. Fix ability to be able to send assets to same address they are being spent from d87a819609
  170. 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 …
    048908feed
  171. Able to parse 21 billion (max asset qty). (#163) 26241b26b2
  172. fix depends environment
    rename from bitcoin-> raven
    -cleanup a type in Makefile
    eb754b3299
  173. reAdd gen.cpp
    gen.cpp is required for `make dist`
    a899f597c7
  174. renaming and fixes
    rename bitcoin->raven
    -and-
    ensure md_helper.c gets included in `make dist` builds
    dc2bcb2c17
  175. finalize macdeploy changes
    updated macdeployqtplus to python3
    
    fix backgroundImageAlias bytelength (7 chars require)
    1cc1165beb
  176. Moving to DGW when RIP-2 is activated. (#161) 00ffd2b9c1
  177. Fix Splash Screen Logo positioning and aliasing (#166) 32eeb90306
  178. Add regtest mining shortcut to assets tab 9e4e3c3e41
  179. Merge pull request #167 from RavenProject/debug_mining_shortcut
    Add regtest mining shortcut to assets tab
    838cb090ee
  180. QT: revised asset in/out tx icons. 7270cfe4a9
  181. Merge pull request #168 from RavenProject/cfox-asset-tx-icons
    QT: revised asset in/out tx icons.
    42d247fbec
  182. Merge pull request #164 from underdarkskies/macosx-buildfix
    enable MacOS crosscompile builds from ubuntu18
    416aa009ca
  183. Doc updates. (#170) 1f68d730cb
  184. QT: revised asset in/out tx icons. (#171) 5e08051ce0
  185. Merge pull request #172 from RavenProject/release
    Merge 2.0.1 release branch to master
    c2dab4890f
  186. Testing sub assets 8ec7550a9d
  187. Fix sync issue caused by DGW 75c3442091
  188. Add mining logs to debug=net f000fcc88d
  189. Merge pull request #182 from RavenProject/dwg-sync-fix
    Dwg sync fix
    1a30524c40
  190. Add subassets rpc, fix ownership asset database problem 4f72e4bbd7
  191. Remove spam logs af84a7f499
  192. Remove spam logs 8f61c10ae5
  193. Fix large asset transactions failing asset check and asset serialization 8293f6fe8f
  194. 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.
    9fd33dad8f
  195. Under fix to CHANNEL namespace b760682473
  196. h b35bd9b167
  197. Merge pull request #197 from RavenProject/under-channel-namespace-fix
    Under channel namespace fix
    9fd7e5468c
  198. Merge pull request #195 from RavenProject/cfox-rip9v2
    Switching to DGW at a specific block.
    31eb2b5be5
  199. Update regex to disallow improper asset names d8027a2765
  200. Add back $ to regex expression ee999c5231
  201. Add -fPIC as default on Linux builds to avoid build errors. Add additional NONCE for miner tests. 82c11a6736
  202. Merge pull request #199 from RavenProject/revert-fpic
    Add -fPIC as default on Linux builds to avoid build errors.  Add addi…
    b8aad202fa
  203. Set reissuable to true by default, update typos 38b322dd3d
  204. Quick bug fix for creating new asset with ! in it. Fix typo 9883ee221a
  205. Remove commented out code 45b034669c
  206. Merge pull request #196 from RavenProject/sub_asset_2
    Ability to Create Sub Assets via RPC. Fix large Asset Transactions
    ed0ea50fb9
  207. Fixed/ Edited a few things
    Fixed a date and added a few things
    b3a6fa2eab
  208. Fixed typo 19a96f6ced
  209. Merge pull request #201 from RavenProject/typo_fixes
    Typo fixes made by  UsertJonPizza
    7b62d978ae
  210. Testnetv4 and some block timing for DGW (#200)
    * Testnetv4 and some block timing for DGW.
    f95a36cf27
  211. Add sub assets to func test (#202) c344555e36
  212. One command 59a393fab0
  213. Fixes a test case. c94460ad65
  214. Merge pull request #204 from RavenProject/tron-issuesubasset-to-issue
    One command
    7b69824948
  215. Removes some noise on stdout. 799a9b275e
  216. Updated version to 2.0.3 25be212adc
  217. Add asset issuance scripts 8930753797
  218. Include some documentation on scripts c3c372e11c
  219. fix md fc169bc644
  220. Merge pull request #205 from RavenProject/cfox-cleanup
    Removes some noise on stdout.
    9bd3cc8555
  221. fix_db_asset_spends 6f59415441
  222. Merge pull request #214 from RavenProject/bug_210
    Fix for bug 210
    9192c6cbe2
  223. Merge pull request #215 from RavenProject/develop2
    Merge new bug fixes into release 2.0.3 branch
    39d87457eb
  224. Fix chain syncing errors 018b922d58
  225. Fix qt formatting amount 584b451548
  226. 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.
    fa50d36d71
  227. 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
    31ba698c1e
  228. Fix null pointer check before accessing pointer object f690fb5b4b
  229. Merge pull request #225 from RavenProject/bug_null_pointer_fix
    Fix reindex segfault when using build from ubuntu 18.04
    7bf0721d19
  230. Add pointer protection before accessing pointer c1da31c2a4
  231. Merge pull request #227 from RavenProject/unprotected_pointer
    Add pointer protection before accessing pointer
    dacb7accdc
  232. Tron version and depth (#226)
    * Increase chaining depth defaults
    
    * Increment version - increase chaining depth
    3dc585a366
  233. 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.
    01a355bf91
  234. Modify to work default with testnet 4f089b574d
  235. Merge pull request #213 from RavenProject/tron-asset-scripts
    Tron asset scripts
    7cde3ea9c3
  236. Fix database, fix unit tests 0789fc8cc9
  237. Merge pull request #230 from RavenProject/database_bug_fix_2_0_4
    Fix asset database error, fix unit tests
    b265da93b2
  238. Merge pull request #231 from RavenProject/release_2.0.4
    Release 2.0.4 back to develop2
    cf65ceca0e
  239. Allow Asset Tx Chaining (#237)
    * Add ability to chain asset transaction just like you can chain RVN transactions
    9843103a0a
  240. Fix mempool_limit test d836d858ad
  241. invoke python interpreter
    python scripts should invoke the python interpreter. hopefully these are written in python3, if not adjust.
    01efaa5c7c
  242. Merge pull request #241 from underdarkskies/Python
    invoke python interpreter
    ba31e3c08f
  243. 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
    d050c44ba1
  244. Merge pull request #240 from RavenProject/mney-fix-functional-test
    Fix test_runner-configure, mempool_limit test, and add nonce to miner_tests
    23ee8fb45c
  245. Adding release notes for the 2.0.4 release f2cde1b9d6
  246. Updating verbage as per cfox's suggestion 1cbee6c77e
  247. Merge pull request #242 from RavenProject/mney-add-2.0.4-release-notes
    Add 2.0.4 release notes
    92390ac546
  248. Remove the ability to chain reissue transactions (#245)
    * Don't allow reissue chaining
    f2a0d74c09
  249. Add ability to create assets of other types with the GUI (#243)
    * Add ability to create assets of other types with the GUI
    393aa8ab76
  250. Check Units when issuing assets (#249) 16ed3ca602
  251. Fixing Linux build errror - missing string include in header 6aef69fb55
  252. DrahtBot added the label Needs rebase on Aug 23, 2018
  253. DrahtBot commented at 9:48 PM on August 23, 2018: member

    <!--cf906140f33d8803c4a75a2196329ecb-->Needs rebase

  254. spyder46n2 closed this on Aug 23, 2018

  255. spyder46n2 deleted the branch on Aug 23, 2018
  256. fanquake locked this on Aug 26, 2018
  257. fanquake removed the label Needs rebase on Aug 26, 2018
Contributors

github-metadata-mirror

This is a metadata mirror of the GitHub repository bitcoin/bitcoin. This site is not affiliated with GitHub. Content is generated from a GitHub metadata backup.
generated: 2026-04-26 12:15 UTC

This site is hosted by @0xB10C
More mirrored repositories can be found on mirror.b10c.me