Giter Site home page Giter Site logo

bitcoinunlimited / bitcoinunlimited Goto Github PK

View Code? Open in Web Editor NEW
471.0 471.0 212.0 86.31 MB

Bitcoin Unlimited continues on gitlab see https://gitlab.com/bitcoinunlimited/BCHUnlimited

Home Page: http://www.bitcoinunlimited.info/download.html

License: MIT License

Shell 0.81% QMake 0.02% Makefile 1.13% Python 15.18% C++ 69.22% C 9.60% HTML 0.20% Objective-C++ 0.06% Java 0.39% M4 2.45% Roff 0.04% Assembly 0.26% Batchfile 0.29% CMake 0.04% GDB 0.01% Dockerfile 0.03% Sage 0.28%

bitcoinunlimited's Introduction

Website | Download | Setup | Miner | ElectronCash | UnconfirmedChains

Build Status

What is Bitcoin Cash?

Bitcoin Cash is an experimental new digital currency that enables instant payments to anyone, anywhere in the world. Bitcoin Cash uses peer-to-peer technology to operate with no central authority: managing transactions and issuing money are carried out collectively by the network. Bitcoin Unlimited is the name of open source software which enables the use of this currency.

For more information, as well as an immediately useable, binary version of the Bitcoin Unlimited software, see https://www.bitcoinunlimited.info/download, or read the original whitepaper.

What is Bitcoin Unlimited?

Bitcoin Unlimited is an implementation of the Bitcoin client software that is based on Bitcoin Core. However, Bitcoin Unlimited has a very different philosophy than Core.

It follows a philosophy and is administered by a formal process described in the Articles of Federation. In short, we believe in market-driven decision making, emergent consensus, and giving our users choices.

Installing

For info on installing Bitcoin Unlimited see INSTALL.md

Building

For info on building Bitcoin Unlimited from sources, see

They are not complete guides, but include notes on the necessary libraries, compile flags, etc.

Running / setup

Development

Online resources

License

Bitcoin Unlimited is released under the terms of the MIT software license. See COPYING for more information. This product includes software developed by the OpenSSL Project for use in the OpenSSL Toolkit. This product includes cryptographic software written by Eric Young ([email protected]), and UPnP software written by Thomas Bernard.

bitcoinunlimited's People

Contributors

awemany avatar bissias avatar cozz avatar dagurval avatar deadalnix avatar fanquake avatar ftrader avatar gandrewstone avatar gavinandresen avatar gmaxwell avatar greg-griffith avatar jonasschnelli avatar jtimon avatar justaphf avatar laanwj avatar luke-jr avatar marlengit avatar morcos avatar non-github-bitcoin avatar paveljanik avatar petertodd avatar pstratem avatar ptschip avatar sanch0panza avatar sdaftuar avatar sickpig avatar sipa avatar soeren-b-c avatar thebluematt avatar theuni avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

bitcoinunlimited's Issues

HaveNameProxy seems to be disfunctional

this part of the code doesn't seem to be working right...addr will always be NULL.

if (HaveNameProxy()) {
while(true) {
list lAddresses(0);
{
LOCK(cs_vAddedNodes);
BOOST_FOREACH(const std::string& strAddNode, vAddedNodes)
lAddresses.push_back(strAddNode);
}
BOOST_FOREACH(const std::string& strAddNode, lAddresses) {
CAddress addr;
CSemaphoreGrant grant(*semOutboundAddNode);
OpenNetworkConnection(addr, &grant);
MilliSleep(500);
}

"./leakybucket.h:15:47: error: use of undeclared identifier 'LONG_LONG_MAX'" on FreeBSD

I'm trying to compile on FreeBSD 9.3 by following instructions that work for BitcoinXT (https://github.com/bitcoinxt/bitcoinxt/blob/master/doc/build-freebsd.md) but ran into an error.

In file included from ./unlimited.h:9:
./leakybucket.h:15:47: error: use of undeclared identifier 'LONG_LONG_MAX'
static const int64_t DEFAULT_MAX_RECV_BURST = LONG_LONG_MAX;
                                              ^
./leakybucket.h:17:47: error: use of undeclared identifier 'LONG_LONG_MAX'
static const int64_t DEFAULT_MAX_SEND_BURST = LONG_LONG_MAX;
                                              ^
./leakybucket.h:19:41: error: use of undeclared identifier 'LONG_LONG_MAX'
static const int64_t DEFAULT_AVE_RECV = LONG_LONG_MAX;
                                        ^
./leakybucket.h:21:41: error: use of undeclared identifier 'LONG_LONG_MAX'
static const int64_t DEFAULT_AVE_SEND = LONG_LONG_MAX;
                                        ^
./leakybucket.h:55:68: error: use of undeclared identifier 'LONG_LONG_MAX'
    CLeakyBucket(int64_t maxp, int64_t fillp, int64_t startLevel = LONG_LONG_MAX) : max(maxp), fill(fillp)
                                                                   ^
./leakybucket.h:66:16: error: use of undeclared identifier 'LONG_LONG_MAX'
        fill = LONG_LONG_MAX;
               ^
./leakybucket.h:67:15: error: use of undeclared identifier 'LONG_LONG_MAX'
        max = LONG_LONG_MAX;
              ^
./leakybucket.h:94:21: error: use of undeclared identifier 'LONG_LONG_MAX'
        if (fill == LONG_LONG_MAX)
                    ^
./leakybucket.h:95:20: error: use of undeclared identifier 'LONG_LONG_MAX'
            return LONG_LONG_MAX; // shaping is off
                   ^
./leakybucket.h:103:21: error: use of undeclared identifier 'LONG_LONG_MAX'
        if (fill == LONG_LONG_MAX)
                    ^
./leakybucket.h:117:21: error: use of undeclared identifier 'LONG_LONG_MAX'
        if (fill == LONG_LONG_MAX)
                    ^
11 errors generated.
Makefile:6110: recipe for target 'bitcoind-bitcoind.o' failed
gmake[2]: *** [bitcoind-bitcoind.o] Error 1
gmake[2]: Leaving directory '/usr/home/bitcoin/src/BitcoinUnlimited/src'
Makefile:7073: recipe for target 'all-recursive' failed
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory '/usr/home/bitcoin/src/BitcoinUnlimited/src'
Makefile:652: recipe for target 'all-recursive' failed
gmake: *** [all-recursive] Error 1

A quick search found https://wiki.sagemath.org/freebsd/sage-4.3:

sage/groups/perm_gps/permgroup_element.c fails to compile because LONG_LONG_MAX is not available on FreeBSD. Some googling suggests that this macro is either a GNU extension or is deprecated in C99 and has been replaced by LLONG_MAX - I have not been able to find a direct reference but indirect references include the following links: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=168346#19 http://linux.softpedia.com/progChangelog/GNU-ddrescue-Changelog-6106.html http://clang.llvm.org/doxygen/limits_8h-source.html

So I ran:

find . -name "*.h" -print0 | xargs -0 sed -i '' -e 's/LONG_LONG_MAX/LLONG_MAX/g'
find . -name "*.cpp" -print0 | xargs -0 sed -i '' -e 's/LONG_LONG_MAX/LLONG_MAX/g'

I'm not sure if this change should be done everywhere, or maybe inside some sort of conditional just on FreeBSD, but that simple change gets BU past this error on FreeBSD

main.cpp:4857: void ProcessGetData(CNode*, const Consensus::Params&): Assertion `!"cannot load block from disk"' failed.

I can trigger my node to crash by running a new node and force it to -connect only to my full node.
The full node then crashes with this error in the console:

bitcoin-qt: main.cpp:4857: void ProcessGetData(CNode*, const Consensus::Params&): Assertion `!"cannot load block from disk"' failed.

the debug.log has this:
ERROR: ReadBlockFromDisk: Deserialize or I/O error - ReadCompactSize(): size too large at CBlockDiskPos(nFile=27, nPos=64059636)

t could be a hardware error on my end (don't hope so), but I don't experience other strange crashes or similar.

As said, it is fairly reproducible, if you need additional info.

OSX 0.12.0 version crashes immediately

The OSX DMG download instantly crashes on my system (the corresponding 64 bit .tar.gz does an instant segmentation fault):
DMG: Version: 0.12.0, Mar 14, 2016: bitcoinUnlimited-0.12.0-osx.dmg
Has anyone else had success with this?

The diagnostic dump is below.

Thanks
Brian


Process: Bitcoin-Qt [16899]
Path: /Applications/Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt
Identifier: org.bitcoinfoundation.Bitcoin-Qt
Version: 0.12.0 (0.12.0)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Bitcoin-Qt [16899]
User ID: 501

Date/Time: 2016-07-04 21:27:03.551 -0700
OS Version: Mac OS X 10.11.3 (15D21)
Report Version: 11
Anonymous UUID: 36523B8A-8A77-642A-6729-27AD61E690AC

Sleep/Wake UUID: AB0A8E19-5F7E-4D61-8626-E464E921C6F9

Time Awake Since Boot: 7200000 seconds
Time Since Wake: 3500000 seconds

System Integrity Protection: enabled

Crashed Thread: 0 Dispatch queue: com.apple.main-thread

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: KERN_INVALID_ADDRESS at 0x0000000000000008
Exception Note: EXC_CORPSE_NOTIFY

VM Regions Near 0x8:
-->
__TEXT 000000010629f000-0000000107b34000 [ 24.6M] r-x/rwx SM=COW /Applications/Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt

Application Specific Information:
/Applications/Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt

Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
0 libstdc++.6.dylib 0x00007fff991f63ab std::Rb_tree_decrement(std::Rb_tree_node_base) + 13
1 org.bitcoinfoundation.Bitcoin-Qt 0x00000001065eb9f9 0x10629f000 + 3459577
2 org.bitcoinfoundation.Bitcoin-Qt 0x00000001065eb7cf 0x10629f000 + 3459023
3 org.bitcoinfoundation.Bitcoin-Qt 0x00000001065eb4ff 0x10629f000 + 3458303
4 org.bitcoinfoundation.Bitcoin-Qt 0x00000001065a519a 0x10629f000 + 3170714
5 org.bitcoinfoundation.Bitcoin-Qt 0x00000001065a5985 0x10629f000 + 3172741
6 dyld 0x00007fff6ed51f8b ImageLoaderMachO::doModInitFunctions(ImageLoader::LinkContext const&) + 265
7 dyld 0x00007fff6ed52104 ImageLoaderMachO::doInitialization(ImageLoader::LinkContext const&) + 40
8 dyld 0x00007fff6ed4e73d ImageLoader::recursiveInitialization(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&, ImageLoader::UninitedUpwards&) + 305
9 dyld 0x00007fff6ed4e5c3 ImageLoader::processInitializers(ImageLoader::LinkContext const&, unsigned int, ImageLoader::InitializerTimingList&, ImageLoader::UninitedUpwards&) + 127
10 dyld 0x00007fff6ed4e833 ImageLoader::runInitializers(ImageLoader::LinkContext const&, ImageLoader::InitializerTimingList&) + 75
11 dyld 0x00007fff6ed410f1 dyld::initializeMainExecutable() + 208
12 dyld 0x00007fff6ed44da9 dyld::main(macho_header const, unsigned long, int, char const**, char const**, char const**, unsigned long
) + 3613
13 dyld 0x00007fff6ed40276 dyldbootstrap::start(macho_header const_, int, char const**, long, macho_header const_, unsigned long_) + 512
14 dyld 0x00007fff6ed40036 _dyld_start + 54

Thread 0 crashed with X86 Thread State (64-bit):
rax: 0x0000000000000000 rbx: 0x0000000107c5ab00 rcx: 0x0000000000000000 rdx: 0x00007fff5995da40
rdi: 0x0000000107c5ab00 rsi: 0x00007fff5995da40 rbp: 0x00007fff5995d960 rsp: 0x00007fff5995d960
r8: 0x0000000000000002 r9: 0x00000000ff000000 r10: 0x00000000ffffffff r11: 0x00007f8cdad43fd0
r12: 0x0000000107c5ab00 r13: 0x00007fff78c82070 r14: 0x0000000107c5aaf8 r15: 0x00007fff5995da40
rip: 0x00007fff991f63ab rfl: 0x0000000000010246 cr2: 0x0000000000000008

Logical CPU: 4
Error Code: 0x00000004
Trap Number: 14

Binary Images:
0x10629f000 - 0x107b33fef +org.bitcoinfoundation.Bitcoin-Qt (0.12.0 - 0.12.0) <01638A00-77E6-3CCF-8C20-A1B40A474D0B> /Applications/Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt
0x107cdd000 - 0x107ce1fff com.apple.agl (3.3.1 - AGL-3.3.1) <8B380B9E-3E00-3065-842E-41F4421D8D5A> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x7fff6ed3f000 - 0x7fff6ed76007 dyld (360.19) <9D05FDF4-65CE-3B53-86D4-ABE1A5BF35F3> /usr/lib/dyld
0x7fff8655d000 - 0x7fff865d1fff com.apple.framework.IOKit (2.0.2 - 1179.20.6) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff865d2000 - 0x7fff865ddff7 libcommonCrypto.dylib (60075.20.1) <766BC3F5-41F3-3315-BABC-72718A98EA92> /usr/lib/system/libcommonCrypto.dylib
0x7fff865e5000 - 0x7fff865f0ff7 libChineseTokenizer.dylib (16) <998637AB-DC37-3A7C-A85C-F10FD98CAAD7> /usr/lib/libChineseTokenizer.dylib
0x7fff86606000 - 0x7fff86693dd7 com.apple.AppleJPEG (1.0 - 1) <9F0E8564-FCC4-33BE-9C6A-2BA926A33F6F> /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff86a9b000 - 0x7fff86aa3fe7 libsystem_platform.dylib (74.10.3) /usr/lib/system/libsystem_platform.dylib
0x7fff86c31000 - 0x7fff86c76ff3 libFontRegistry.dylib (155.1) <593CC743-3785-3CC5-A229-D3846C51E054> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff86cfa000 - 0x7fff86d02fff libcopyfile.dylib (127) /usr/lib/system/libcopyfile.dylib
0x7fff86d03000 - 0x7fff86d72fff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff86d73000 - 0x7fff86dadfff com.apple.QD (3.12 - 302) <3F36A108-C557-353A-A3F7-80DDCB82BB37> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff8712b000 - 0x7fff87141ff7 libLinearAlgebra.dylib (1159) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff87142000 - 0x7fff8723eff7 libFontParser.dylib (158.4) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff872ba000 - 0x7fff873ccfef libvDSP.dylib (563.4) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff873dd000 - 0x7fff873e2ff3 libunwind.dylib (35.3) <124E0F05-2350-3774-A32C-7F5BF38EDE73> /usr/lib/system/libunwind.dylib
0x7fff873e3000 - 0x7fff873efff7 com.apple.OpenDirectory (10.11 - 194) <5409AC27-3B83-3F35-8EB5-51228B4604AE> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff873fb000 - 0x7fff87415fff com.apple.Kerberos (3.0 - 1) <836358DE-2731-3ACD-98E3-E5FA48917728> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff87421000 - 0x7fff87423ff7 libsystem_configuration.dylib (802.20.7) <5FD79070-36CC-3D02-BEA7-BB5D2AE97D5D> /usr/lib/system/libsystem_configuration.dylib
0x7fff8746c000 - 0x7fff8748afff libsystem_kernel.dylib (3248.30.4) <9CEB6C3B-1CAF-3C32-A9FD-93BC72CBCEA1> /usr/lib/system/libsystem_kernel.dylib
0x7fff874a4000 - 0x7fff874bdfff com.apple.openscripting (1.7.1 - 169.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff874c4000 - 0x7fff874c4fff libmetal_timestamp.dylib (600.0.43.5) <4BA5B935-F932-3863-9B31-EF0A7DEAF15C> /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x7fff8777d000 - 0x7fff878a9ff7 com.apple.CoreText (352.0 - 494.10) <9FD834B1-FF8E-3EB0-BB11-6E9120969086> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff87ab1000 - 0x7fff87ab3ff7 libquarantine.dylib (80) <163CF63A-7455-3D1F-AE57-8C4475A9204C> /usr/lib/system/libquarantine.dylib
0x7fff87ab4000 - 0x7fff87ab4fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff87d0c000 - 0x7fff87d0dfff libsystem_blocks.dylib (65) <49D42329-7DE9-3413-92C3-A473A7E9CF35> /usr/lib/system/libsystem_blocks.dylib
0x7fff87d2c000 - 0x7fff87db4fff com.apple.CoreSymbolication (3.1 - 58048.1) <6436E5E0-B05C-36D6-942A-47026DD2D874> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff884e0000 - 0x7fff886a0feb libBLAS.dylib (1159) <943445A4-F6CA-3923-882C-154D7D4AEFE0> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff886de000 - 0x7fff887d0ff7 libiconv.2.dylib (44) /usr/lib/libiconv.2.dylib
0x7fff887d1000 - 0x7fff887f5fff com.apple.MultitouchSupport.framework (304.10 - 304.10) <1E0206D9-34AD-3810-8ED0-29DC450D1485> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff88bf7000 - 0x7fff88bfafff libCoreVMClient.dylib (119.5) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff88bfb000 - 0x7fff88d09ff3 com.apple.desktopservices (1.10 - 1.10) <0BAED9FA-EFA5-3DA0-8715-043FD2400B77> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff88d59000 - 0x7fff88fffff7 com.apple.CoreData (120 - 641.3) <65509AA2-A0E6-3EE3-BDFE-B9B120F744ED> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff8a0ed000 - 0x7fff8a127ff7 com.apple.DebugSymbols (132 - 132) /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff8ac58000 - 0x7fff8ac71fef libcompression.dylib (25) /usr/lib/libcompression.dylib
0x7fff8acdc000 - 0x7fff8ad1dff7 libGLU.dylib (12.0.40.6) <1C9899B5-4741-340F-A2D7-F9AF03B42A47> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff8ada0000 - 0x7fff8ada1fff liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib
0x7fff8ada2000 - 0x7fff8adb8ff7 libsystem_coretls.dylib (83.20.8) <75C97D88-0A63-3093-AE83-DE33EB7405CE> /usr/lib/system/libsystem_coretls.dylib
0x7fff8adb9000 - 0x7fff8adc4fff libkxld.dylib (3248.30.4) /usr/lib/system/libkxld.dylib
0x7fff8adc5000 - 0x7fff8adf9ff7 com.apple.CoreVideo (1.8 - 191.2) <88D903C8-E608-320E-8ACD-11E5B3003C18> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff8adfa000 - 0x7fff8adfffff com.apple.DiskArbitration (2.7 - 2.7) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff8ae00000 - 0x7fff8ae29ff7 libxslt.1.dylib (14.1) /usr/lib/libxslt.1.dylib
0x7fff8ae2c000 - 0x7fff8ae30fff libcache.dylib (75) <6B245C0A-F3EA-383B-A542-5B0D0456A41B> /usr/lib/system/libcache.dylib
0x7fff8afed000 - 0x7fff8b0dfff7 libJP2.dylib (1442) <3B374049-CCA4-3B4D-9517-583F2BF6B77D> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff8b0f6000 - 0x7fff8b100fff com.apple.NetAuth (6.0 - 6.0) <19E44307-6F9F-3DEC-8C1A-4685BC252A35> /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff8b34e000 - 0x7fff8b36aff7 libsystem_malloc.dylib (67) <9EECAB18-F025-34C4-8E32-7EFFA6720EFC> /usr/lib/system/libsystem_malloc.dylib
0x7fff8b38c000 - 0x7fff8b400ff3 com.apple.securityfoundation (6.0 - 55126) <11644DA4-F1CF-3FB1-86A0-0DA8E8C27148> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff8b401000 - 0x7fff8b409fff com.apple.NetFS (6.0 - 4.0) /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff8b4ac000 - 0x7fff8b4bafff com.apple.opengl (12.0.40 - 12.0.40) /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8b4c1000 - 0x7fff8b63ffff com.apple.UIFoundation (1.0 - 436.1) <8C254BB0-1DED-36A2-AAAF-786EB19CCE39> /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff8b640000 - 0x7fff8b7e6ff7 com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff8b7e7000 - 0x7fff8b7e7ff7 libkeymgr.dylib (28) <09397E01-6066-3179-A50C-2CE666FDA929> /usr/lib/system/libkeymgr.dylib
0x7fff8b841000 - 0x7fff8ba4eff7 com.apple.CoreImage (11.2.0 - 366.2.7) <344F1067-5F52-3626-8F6C-2B678DEB80A1> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff8bb88000 - 0x7fff8bc1efff com.apple.ColorSync (4.9.0 - 4.9.0) <8BB8DF19-C24F-39F8-8B90-AD186D74587C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff8bcba000 - 0x7fff8c00eff7 com.apple.Foundation (6.9 - 1256.1) <66106CC9-9D97-3846-88D8-4BF6BB508296> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8c8ce000 - 0x7fff8c8f0fff com.apple.IconServices (68.1 - 68.1) <3ECAA762-1193-3D76-A25F-7680DB3A957E> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff8c9a0000 - 0x7fff8c9e6ff7 libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib
0x7fff8cac4000 - 0x7fff8cae0ff7 libextension.dylib (78) <589FA312-F17C-3A8D-986F-FD995D0065D5> /usr/lib/libextension.dylib
0x7fff8cae1000 - 0x7fff8cae1fff com.apple.CoreServices (728.6 - 728.6) <1FC9300C-6D3D-330C-829C-C8F094BC38C6> /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff8cb0f000 - 0x7fff8cda5fff libmecabra.dylib (696.4) <0A1574F0-3222-3856-A1C6-D8BE20DC4C48> /usr/lib/libmecabra.dylib
0x7fff8ce0f000 - 0x7fff8ce6dfff com.apple.SystemConfiguration (1.14 - 1.14) <5A70115B-E346-3EBD-A617-9A11C61EEF2E> /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8ce6e000 - 0x7fff8ce7cfff libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib
0x7fff8cec6000 - 0x7fff8d2c8fff libLAPACK.dylib (1159) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff8d2c9000 - 0x7fff8d2d5ff7 com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <8B6C0DB6-8744-3AEB-BD00-9FA6967E7125> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff8d5e7000 - 0x7fff8d62cff7 com.apple.coreservices.SharedFileList (24.4 - 24.5) <72156BE7-0804-3F90-9AF9-14C4739430C2> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff8d63d000 - 0x7fff8d646ff3 libsystem_notify.dylib (150.20.3) <243FADE1-255A-3B78-8033-F336CD64B817> /usr/lib/system/libsystem_notify.dylib
0x7fff8d687000 - 0x7fff8d68cff7 libmacho.dylib (875.1) /usr/lib/system/libmacho.dylib
0x7fff8d696000 - 0x7fff8d98bfff com.apple.HIToolbox (2.1.1 - 807.2) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff8daff000 - 0x7fff8db2dff7 com.apple.DictionaryServices (1.2 - 250) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff8dbe7000 - 0x7fff8ddf2fff libFosl_dynamic.dylib (16.24) <363B7CEE-B662-32F3-9D7B-245E64927C35> /usr/lib/libFosl_dynamic.dylib
0x7fff8ddf3000 - 0x7fff8de62fff com.apple.datadetectorscore (7.0 - 460) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff8de63000 - 0x7fff8de63fff libenergytrace.dylib (10) /usr/lib/libenergytrace.dylib
0x7fff8de64000 - 0x7fff8e322fcf com.apple.vImage (8.0 - 8.0) <85FB412E-EB30-3433-A79B-B3970FC83580> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8e8da000 - 0x7fff8e8ddffb libdyld.dylib (360.19) /usr/lib/system/libdyld.dylib
0x7fff8e8ee000 - 0x7fff8e912ff7 libJPEG.dylib (1442) <0F9069AB-D830-37DD-8813-B635D1ECB3E4> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff8e931000 - 0x7fff8e950ff7 com.apple.framework.Apple80211 (11.0 - 1110.33) /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff8e95a000 - 0x7fff8e95cff7 com.apple.securityhi (9.0 - 55006) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff8e974000 - 0x7fff8e9e2ff7 com.apple.ApplicationServices.ATS (377 - 394.3) <0DDD3503-3D74-3CCA-BD25-7F19B03C2579> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff8ea57000 - 0x7fff8ea58fff libsystem_secinit.dylib (20) /usr/lib/system/libsystem_secinit.dylib
0x7fff8f660000 - 0x7fff8f6bdfff com.apple.CoreServices.OSServices (728.6 - 728.6) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8f6be000 - 0x7fff8f753fff com.apple.ink.framework (10.9 - 214) <6B573126-A6E9-357F-B36A-AA5BDC0BEAF8> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff8fa15000 - 0x7fff8fa1dffb libsystem_dnssd.dylib (625.20.4) <945B5FB1-DA91-3D45-A961-A8FAD53C1E7E> /usr/lib/system/libsystem_dnssd.dylib
0x7fff8fa1e000 - 0x7fff8fa26fff libGFXShared.dylib (12.0.40.6) <7E84C8A9-40DA-302A-A3DE-9AE3C61A3465> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff8fa27000 - 0x7fff8fa2bfff libGIF.dylib (1442) <2F7DA684-3510-38C2-B48F-9D33194860A1> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8fa3d000 - 0x7fff8fa40ff7 libCoreFSCache.dylib (119.5) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff8fa56000 - 0x7fff8fa56fff com.apple.Accelerate (1.10 - Accelerate 1.10) <97B71D88-9C93-3943-B09E-642183B4E1AC> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff8fcd0000 - 0x7fff8fcd2fff libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib
0x7fff90062000 - 0x7fff900b5ff7 libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib
0x7fff910df000 - 0x7fff910fbff3 libresolv.9.dylib (60) /usr/lib/libresolv.9.dylib
0x7fff9111d000 - 0x7fff9113aff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <2B459E1F-0563-30B2-A04D-CF1793426B66> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff91163000 - 0x7fff91168fff com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff91169000 - 0x7fff911ddfff com.apple.Heimdal (4.0 - 2.0) <009F223D-B89B-376B-94F5-6D982CBEF771> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff911de000 - 0x7fff911e2fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff911e3000 - 0x7fff911e7fff com.apple.CommonPanels (1.2.6 - 96) <61E9D84F-435A-3C7B-A065-047B80775777> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff911f2000 - 0x7fff91230ff7 libGLImage.dylib (12.0.40.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff91231000 - 0x7fff912d8fff com.apple.LanguageModeling (1.0 - 1) /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff91a05000 - 0x7fff91a20ff7 libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib
0x7fff91a21000 - 0x7fff91a22ffb libremovefile.dylib (41) /usr/lib/system/libremovefile.dylib
0x7fff91a23000 - 0x7fff91bf1ffb com.apple.QuartzCore (1.11 - 410.14) /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff91bf2000 - 0x7fff91dbbff7 com.apple.ImageIO.framework (3.3.0 - 1442) <2C8AF87E-080E-3FD8-824D-332B43DF4B61> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff91dbc000 - 0x7fff91dbefff com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff92091000 - 0x7fff92094ffb libScreenReader.dylib (425.102) /usr/lib/libScreenReader.dylib
0x7fff92095000 - 0x7fff920acfff libmarisa.dylib (4) /usr/lib/libmarisa.dylib
0x7fff921a4000 - 0x7fff922c9ff7 com.apple.LaunchServices (728.6 - 728.6) <204CD7A1-D99C-3655-82D7-E8E89F9C666B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff92384000 - 0x7fff923fbfe7 libcorecrypto.dylib (335.20.1) /usr/lib/system/libcorecrypto.dylib
0x7fff92511000 - 0x7fff9256cff7 libTIFF.dylib (1442) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff92b43000 - 0x7fff92b43ff7 liblaunch.dylib (756.20.4) /usr/lib/system/liblaunch.dylib
0x7fff92b44000 - 0x7fff92b55ff7 libz.1.dylib (61.20.1) /usr/lib/libz.1.dylib
0x7fff92b56000 - 0x7fff92b61fff com.apple.CrashReporterSupport (10.11 - 717) <474544AD-1199-3ECC-90E5-071847BA72C6> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff92b62000 - 0x7fff92ba4ff7 com.apple.Metal (55.2.8 - 55.2.8) /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff92ba5000 - 0x7fff92bcaff7 libPng.dylib (1442) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff92c0f000 - 0x7fff92c0ffff com.apple.Cocoa (6.11 - 22) <0A634D46-B468-3CBC-B2A0-16C381C11BF2> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff92c36000 - 0x7fff93859ff7 com.apple.AppKit (6.9 - 1404.34) <467468E2-C551-3408-B351-414B21F57DEB> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff93a88000 - 0x7fff93b15fff libsystem_c.dylib (1082.20.4) /usr/lib/system/libsystem_c.dylib
0x7fff93b59000 - 0x7fff93baeff7 com.apple.AE (701 - 701) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff93d60000 - 0x7fff93d61ffb libSystem.B.dylib (1226.10.1) <5A4257EF-3145-3BB3-87A4-0D2404A9462D> /usr/lib/libSystem.B.dylib
0x7fff93e14000 - 0x7fff93e65ff7 com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff93f61000 - 0x7fff93f7afff com.apple.CFOpenDirectory (10.11 - 194) /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff93f97000 - 0x7fff941a4ffb libicucore.A.dylib (551.41) /usr/lib/libicucore.A.dylib
0x7fff94263000 - 0x7fff94313fff com.apple.backup.framework (1.7.2 - 1.7.2) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff94314000 - 0x7fff9437bfff com.apple.framework.CoreWiFi (11.0 - 1101.20) /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff9437f000 - 0x7fff94381fff libCVMSPluginSupport.dylib (12.0.40.6) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff94382000 - 0x7fff94667ff3 com.apple.CoreServices.CarbonCore (1136 - 1136) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff94668000 - 0x7fff9466efff com.apple.IOAccelerator (205.1 - 205.1) <9B56A248-FA12-3DB9-AD97-51EB4700E8A8> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff95521000 - 0x7fff95532ff7 libsystem_trace.dylib (201.10.3) /usr/lib/system/libsystem_trace.dylib
0x7fff95539000 - 0x7fff95585fff com.apple.print.framework.PrintCore (11.2 - 472.2) <449D8AB5-7891-32D0-9DC5-C90FE10DC0BF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff95586000 - 0x7fff955b3fff libdispatch.dylib (501.20.1) <324C9189-2AF3-3356-847F-6F4CE1C6E901> /usr/lib/system/libdispatch.dylib
0x7fff956a6000 - 0x7fff9592cff7 com.apple.CFNetwork (760.2.6 - 760.2.6) <653B1552-C1EC-36A5-85D0-9FC3ED3CCF72> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff9592d000 - 0x7fff95956fff libc++abi.dylib (125) /usr/lib/libc++abi.dylib
0x7fff959a3000 - 0x7fff96c0effb com.apple.CoreGraphics (1.600.0 - 948) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff96c0f000 - 0x7fff96c0ffff com.apple.Carbon (154 - 157) <34263101-328D-3FE4-B212-14BD3CFF6965> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff96ca0000 - 0x7fff96cc1fff com.apple.Sharing (442.9.1 - 442.9.1) <672DE6DF-98E0-30A4-BA25-44BDE188D0BE> /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff97557000 - 0x7fff977d7ff3 com.apple.security (7.0 - 57337.20.44) <290E0078-464E-30EE-8288-8B29A875FFE3> /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff977d8000 - 0x7fff97c4efff com.apple.CoreFoundation (6.9 - 1256.14) <768A7FB7-9143-3148-8591-7C6ED3162D35> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff97c54000 - 0x7fff97c5bff7 libcompiler_rt.dylib (62) /usr/lib/system/libcompiler_rt.dylib
0x7fff97c6f000 - 0x7fff97d0fff7 com.apple.Metadata (10.7.0 - 972.16) <3E42A570-BE32-396D-96E1-01B4A778D991> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff97d10000 - 0x7fff97d10fff libOpenScriptingUtil.dylib (169.1) <03BEF6F0-07CD-3EDC-9D11-32202C1857B6> /usr/lib/libOpenScriptingUtil.dylib
0x7fff98072000 - 0x7fff9809bfff libxpc.dylib (756.20.4) <61AB4610-9304-354C-9E9B-D57198AE9866> /usr/lib/system/libxpc.dylib
0x7fff9809c000 - 0x7fff9809eff7 libRadiance.dylib (1442) <9E9084DC-C0DF-30DF-BD6B-7AED3799A129> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff98193000 - 0x7fff981e3fff libcups.2.dylib (435) <28A05475-9DBF-35EA-B218-3432B69EA18B> /usr/lib/libcups.2.dylib
0x7fff983eb000 - 0x7fff9848ffff com.apple.Bluetooth (4.4.3 - 4.4.3f4) /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff98502000 - 0x7fff9886d657 libobjc.A.dylib (680) <58CB8CFC-7DBD-3A53-BD72-A42FF799B21E> /usr/lib/libobjc.A.dylib
0x7fff989c9000 - 0x7fff989ccff7 libsystem_sandbox.dylib (460.30.1) <3E0036AF-FC64-3352-8DA4-6B550C2C2562> /usr/lib/system/libsystem_sandbox.dylib
0x7fff99036000 - 0x7fff99042ff7 com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff990fe000 - 0x7fff991b7ff7 libvMisc.dylib (563.4) <3114F9E9-2B0D-3371-93A1-04BB55CE8DBD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff991b8000 - 0x7fff991e9fff com.apple.GSS (4.0 - 2.0) <25DECD44-0905-3E53-9480-DE7BEB84DB83> /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff991ea000 - 0x7fff99238ff7 libstdc++.6.dylib (104.1) <76E2AFB1-07E5-3F19-B692-F6E21B7E470D> /usr/lib/libstdc++.6.dylib
0x7fff994cb000 - 0x7fff994ccfff libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff994d8000 - 0x7fff994e8fff libSparseBLAS.dylib (1159) <81330B45-9CA3-34AC-891C-6E770C3DFC24> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff994e9000 - 0x7fff994efff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff9978a000 - 0x7fff9978afff com.apple.ApplicationServices (48 - 48) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff9978b000 - 0x7fff997a5ff3 liblzma.5.dylib (10) /usr/lib/liblzma.5.dylib
0x7fff99c18000 - 0x7fff99c64ff3 com.apple.HIServices (1.22 - 549) <14FB5BB6-8456-39F9-A694-8A1C12426880> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff99de6000 - 0x7fff99df9fff com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff99e90000 - 0x7fff99fdafc7 com.apple.coreui (2.1 - 365.2) <727C55D3-503A-3EC4-8A23-C984E320F65F> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff99fdf000 - 0x7fff99fedff7 libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib
0x7fff9a95f000 - 0x7fff9a95ffff com.apple.audio.units.AudioUnit (1.13 - 1.13) /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff9a960000 - 0x7fff9a969ff7 com.apple.CommonAuth (4.0 - 2.0) /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff9ad34000 - 0x7fff9ad36ff7 com.apple.xpc.ServiceManagement (1.0 - 1) <3777FD15-B6F3-32A2-A8E3-3E8CE3B8D5E7> /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff9ad37000 - 0x7fff9ad40ff7 libsystem_pthread.dylib (138.10.4) <327CECD0-B881-3153-8FCC-4FD4818B7F16> /usr/lib/system/libsystem_pthread.dylib
0x7fff9ae74000 - 0x7fff9ae79fff com.apple.ImageCapture (9.0 - 9.0) <33F7822F-1124-3D73-AF66-515EA32A4A47> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff9ae7a000 - 0x7fff9aedbff7 libsystem_network.dylib (583.20.10) <865FE79A-A22D-3733-A14F-FC7B37F3AECD> /usr/lib/system/libsystem_network.dylib
0x7fff9aedc000 - 0x7fff9aeebffb com.apple.LangAnalysis (1.7.0 - 1.7.0) <0D1BCC13-76B9-3C19-85AA-D8DD8299F007> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff9aeec000 - 0x7fff9aeefff7 com.apple.help (1.3.3 - 46) <62056D9B-A87C-3E4D-B4E2-7E1CDB74CE68> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff9afc7000 - 0x7fff9afd7fff libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib
0x7fff9b01b000 - 0x7fff9b026fff libGL.dylib (12.0.40.6) <2A13E40A-BFA1-34FD-925A-C7023FEF254C> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff9b027000 - 0x7fff9b02afff com.apple.IOSurface (108.0.1 - 108.0.1) <7B05B27A-5CC4-30D4-8A10-ED444A2807A2> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff9b02b000 - 0x7fff9b063fff com.apple.RemoteViewServices (2.0 - 99) <596153FD-3CB9-3FED-9D63-1B73B01AC6DB> /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff9b1ec000 - 0x7fff9b217ffb libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib
0x7fff9b22c000 - 0x7fff9b31bfff libxml2.2.dylib (29.2) /usr/lib/libxml2.2.dylib
0x7fff9b32b000 - 0x7fff9b33cfff libcmph.dylib (6) /usr/lib/libcmph.dylib
0x7fff9b3a3000 - 0x7fff9b3cafff com.apple.ChunkingLibrary (167 - 167) <508861C9-F5E6-343B-8DD0-D71DFE49ECFD> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff9b3cc000 - 0x7fff9b41cff7 com.apple.Symbolication (1.4 - 58044) <2EC9F04A-4370-39C8-8549-FC6411D87463> /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff9b47a000 - 0x7fff9b503ff7 com.apple.PerformanceAnalysis (1.0 - 1) /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff9b504000 - 0x7fff9b621fff libsqlite3.dylib (216.4) /usr/lib/libsqlite3.dylib
0x7fff9b76c000 - 0x7fff9b76dff3 com.apple.print.framework.Print (10.0 - 266) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff9b76e000 - 0x7fff9b76eff7 libunc.dylib (29) <1D0F8265-F026-3CBD-93D3-F8DF14FFCE68> /usr/lib/system/libunc.dylib
0x7fff9b92e000 - 0x7fff9b97dff7 com.apple.opencl (2.6.9 - 2.6.9) <27643341-DC6F-3C2F-8B8B-637061979BF3> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff9b982000 - 0x7fff9b98afff libsystem_networkextension.dylib (385.20.6) /usr/lib/system/libsystem_networkextension.dylib
0x7fff9b98b000 - 0x7fff9b9a7fff com.apple.GenerationalStorage (2.0 - 239) /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff9bcdb000 - 0x7fff9bd0affb libsystem_m.dylib (3105) <26655445-CA97-321E-B221-801CB378D1AA> /usr/lib/system/libsystem_m.dylib
0x7fff9bd0b000 - 0x7fff9bd13fff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9bd82000 - 0x7fff9bdabfff libsystem_info.dylib (477.20.1) <6513635B-4ADE-3B45-BF63-ED7AC565B0C9> /usr/lib/system/libsystem_info.dylib
0x7fff9c0f4000 - 0x7fff9c15eff7 com.apple.framework.CoreWLAN (11.0 - 1101.20) <6A535459-6A8A-3D60-986B-EE7ED833A9C3> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff9c3d7000 - 0x7fff9c3dcff7 libheimdal-asn1.dylib (453.20.2) /usr/lib/libheimdal-asn1.dylib
0x7fff9c3fb000 - 0x7fff9c829fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff9c986000 - 0x7fff9c99dff7 libsystem_asl.dylib (322.30.1) <9B500E4E-E462-321E-828E-5524DC984C1B> /usr/lib/system/libsystem_asl.dylib

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 3490755
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=236.4M resident=0K(0%) swapped_out_or_unallocated=236.4M(100%)
Writable regions: Total=41.2M written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=41.2M(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Activity Tracing 2048K 2
Kernel Alloc Once 4K 2
MALLOC 28.3M 12
MALLOC guard page 32K 7
Process Corpse Info 2048K 2
STACK GUARD 56.0M 2
Stack 8192K 2
VM_ALLOCATE 4K 2
__DATA 17.7M 182
__IMAGE 528K 2
__LINKEDIT 91.6M 5
__TEXT 144.8M 188
__UNICODE 552K 2
shared memory 12K 4
=========== ======= =======
TOTAL 351.5M 400

Model: iMac11,3, BootROM IM112.0057.B03, 4 processors, Intel Core i7, 2.93 GHz, 20 GB, SMC 1.59f2
Graphics: ATI Radeon HD 5750, ATI Radeon HD 5750, PCIe, 1024 MB
Memory Module: BANK 0/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313235533654465238432D48392020
Memory Module: BANK 1/DIMM0, 2 GB, DDR3, 1333 MHz, 0x80AD, 0x484D54313235533654465238432D48392020
Memory Module: BANK 0/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
Memory Module: BANK 1/DIMM1, 8 GB, DDR3, 1333 MHz, 0x029E, 0x434D5341384758334D314131333333433920
AirPort: spairport_wireless_card_type_airport_extreme (0x168C, 0x8F), Atheros 9280: 4.0.74.0-P2P
Bluetooth: Version 4.4.3f4 16616, 3 services, 27 devices, 1 incoming serial ports
Network Service: AirPort, AirPort, en1
Serial ATA Device: ST31000528AS, 1 TB
Serial ATA Device: OPTIARC DVD RW AD-5680H
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: IR Receiver
USB Device: Built-in iSight
USB Device: USB 2.0 Bus
USB Device: Hub
USB Device: USB2.0 Hub
USB Device: USB2.0 Hub
USB Device: Keyboard Hub
USB Device: Apple Keyboard
USB Device: USB Receiver
USB Device: My Book 1140
USB Device: Hub
USB Device: Card Reader
USB Device: BRCM2046 Hub
USB Device: Bluetooth USB Host Controller
Thunderbolt Bus:

Pruning leaves too many blocks on disk

With prune=600 the node stores about 30 GB of blocks on disk.

I installed BU on a clean Debian environment, on the newly-created bu home folder:

bu@hwcharts:~$ wget 'https://www.bitcoinunlimited.info/downloads/bitcoinUnlimited-1.0.0-linux64.tar.gz'
bu@hwcharts:~$ tar -axf bitcoinUnlimited-1.0.0-linux64.tar.gz

and I created bitcoin.confbefore starting the client even once; it contains:

bu@hwcharts:~$ cat .bitcoin/bitcoin.conf
prune=600
excessiveblocksize=1000000
excessiveacceptdepth=12

then I started the client:

bu@hwcharts:~/bitcoinUnlimited-1.0.0/bin$ ./bitcoind --version
Bitcoin Unlimited Daemon version v1.0.0.1-b471620

bu@hwcharts:~/bitcoinUnlimited-1.0.0/bin$ nohup ./bitcoind &

and for two days the size of ~/.bitcoin kept rising up to 40 GB until block synching completed: (100% = 100 GB)
disk_usage

then I stopped the BU client with an unpolite pkill bitcoind, but ~/.bitcoin/debug.log recorded a smooth shutdown:

2017-02-06 22:26:03 UpdateTip: 30 of last 100 blocks have unexpected version. One example: 0x20000002
2017-02-06 22:26:21 tor: Thread interrupt
2017-02-06 22:26:21 torcontrol thread exit
2017-02-06 22:26:21 msghand thread interrupt
2017-02-06 22:26:21 opencon thread interrupt
2017-02-06 22:26:21 addcon thread interrupt
2017-02-06 22:26:21 scheduler thread interrupt
2017-02-06 22:26:21 net thread interrupt
2017-02-06 22:26:21 Shutdown: In progress...
2017-02-06 22:26:21 StopNode()
2017-02-06 22:26:21 Shutdown: done

then I restarted the client from the same path and with the same command as before. After the client restarted, the following was appended to the end of debug.log: https://pastebin.mozilla.org/8974271, and the disk usage inside ~/.bitcoin was

bu@hwcharts:~/.bitcoin$ du -h
1.9G    ./chainstate
67M     ./blocks/index
27G     ./blocks
29G     .

System details:

bu@hwcharts:~/.bitcoin$ uname -a
Linux hwcharts 2.6.32-042stab108.8 #1 SMP Wed Jul 22 17:23:23 MSK 2015 i686 GNU/Linux

bu@hwcharts:~$ df -h
Filesystem      Size  Used Avail Use% Mounted on
/dev/simfs      100G   37G   64G  37% /
tmpfs           205M   60K  205M   1% /run
tmpfs           5.0M     0  5.0M   0% /run/lock
devtmpfs         10M     0   10M   0% /dev
tmpfs           410M     0  410M   0% /run/shm

bu@hwcharts:~/.bitcoin$ free
             total       used       free     shared    buffers     cached
Mem:       2097152     446380    1650772          0          0     198332
-/+ buffers/cache:     248048    1849104
Swap:            0          0          0

bu@hwcharts:~/.bitcoin$ cat /etc/debian_version
8.6

minlimitertxfee is not honoured

Please see the following line of code:

https://github.com/BitcoinUnlimited/BitcoinUnlimited/blob/0.12.1bu/src/main.cpp#L1381

 if (fLimitFree && nFees < ::minRelayTxFee.GetFee(nSize) && !fSpendsCoinbase && dPriority < 150000000)

As a result of this line it appears that some transactions with an extremely low sat/byte fee ratio are allowed into the mempool, even when a high value is given for minlimitertxfee.

This check dPriority < 150000000 appears to be allowing these transactions through as they don't enter this if statement and so aren't being rejected. Is there a reason for this change?

For example the following transactions were allowed into my mempool, which had a minlimitertxfee value of 55 sat/byte.

sat/byte 1 d02285a4c829885473cf112bd670730a41982e2662b7c9770f2951e48531a95b size:14798 pri 167089113
sat/byte 1 6c187543414df0d4788b8e8351a7a2d39b9e99b88085e88b0d730b9a1ab54fa3 size:14800 pri 153205977
sat/byte 1 c6366984dbdeadab84b7add71e078015ce5ae90cd7cf8c06336a727eec99e949 size:14797 pri 167087363
sat/byte 1 e1c6a3ef131f23c1967752f46597bf1c6ac74845c94def75ad80bb59b307ebf4 size:14802 pri 167027613

Despite their ratio being 1 sat/byte, they were allowed to enter the mempool as their priorities had been calculated to be higher than 150000000. I think the user should be allowed to override this behaviour.

*** Error in `./bitcoin-qt': corrupted double-linked list: 0x00007f53acb903a0 ***

My bitcoin QT v0.12.1.0-bd24b82 (64-bit) crashed on Ubuntu. This was what I got from the console:

It hasn't happened since (so far...)
Let me know if there is any other info you need.

*** Error in `./bitcoin-qt': corrupted double-linked list: 0x00007f53acb903a0 ***
======= Backtrace: =========
/lib/x86_64-linux-gnu/libc.so.6(+0x777e5)[0x7f53b882a7e5]
/lib/x86_64-linux-gnu/libc.so.6(+0x7e6f8)[0x7f53b88316f8]
/lib/x86_64-linux-gnu/libc.so.6(+0x800a8)[0x7f53b88330a8]
/lib/x86_64-linux-gnu/libc.so.6(cfree+0x4c)[0x7f53b883698c]
./bitcoin-qt(+0x32f56f)[0x55a2a3f9956f]
/lib/x86_64-linux-gnu/libc.so.6(+0x39ff8)[0x7f53b87ecff8]
/lib/x86_64-linux-gnu/libc.so.6(+0x3a045)[0x7f53b87ed045]
/lib/x86_64-linux-gnu/libc.so.6(__libc_start_main+0xf7)[0x7f53b87d3837]
./bitcoin-qt(+0x1675b7)[0x55a2a3dd15b7]
======= Memory map: ========
55a2a3c6a000-55a2a5b27000 r-xp 00000000 08:01 26217434 /home/bitc/bitcoinUnlimited-0.12.1/bin/bitcoin-qt
55a2a5d26000-55a2a5db7000 r--p 01ebc000 08:01 26217434 /home/bitc/bitcoinUnlimited-0.12.1/bin/bitcoin-qt
55a2a5db7000-55a2a5dcb000 rw-p 01f4d000 08:01 26217434 /home/bitc/bitcoinUnlimited-0.12.1/bin/bitcoin-qt
55a2a5dcb000-55a2a5eb4000 rw-p 00000000 00:00 0
55a2a714e000-55a2a85c7000 rw-p 00000000 00:00 0 [heap]
7f533c000000-7f533fffa000 rw-p 00000000 00:00 0
7f533fffa000-7f5340000000 ---p 00000000 00:00 0
7f5344000000-7f5347feb000 rw-p 00000000 00:00 0
7f5347feb000-7f5348000000 ---p 00000000 00:00 0
7f5348000000-7f5348021000 rw-p 00000000 00:00 0
7f5348021000-7f534c000000 ---p 00000000 00:00 0
7f5350000000-7f5350021000 rw-p 00000000 00:00 0
7f5350021000-7f5354000000 ---p 00000000 00:00 0
7f5354000000-7f5354021000 rw-p 00000000 00:00 0
7f5354021000-7f5358000000 ---p 00000000 00:00 0
7f5358000000-7f535c000000 rw-p 00000000 00:00 0
7f535c000000-7f535c021000 rw-p 00000000 00:00 0
7f535c021000-7f5360000000 ---p 00000000 00:00 0
7f5360000000-7f5360021000 rw-p 00000000 00:00 0
7f5360021000-7f5364000000 ---p 00000000 00:00 0
7f5364000000-7f5364639000 rw-p 00000000 00:00 0
7f5364639000-7f5368000000 ---p 00000000 00:00 0
7f5368000000-7f536808d000 rw-p 00000000 00:00 0
7f536808d000-7f536c000000 ---p 00000000 00:00 0
7f536dffc000-7f536dffd000 ---p 00000000 00:00 0
7f536dffd000-7f536e7fd000 rw-p 00000000 00:00 0
7f5370000000-7f5370021000 rw-p 00000000 00:00 0
7f5370021000-7f5374000000 ---p 00000000 00:00 0
7f5374000000-7f5375641000 rw-p 00000000 00:00 0
7f5375641000-7f5378000000 ---p 00000000 00:00 0
7f5378000000-7f5378021000 rw-p 00000000 00:00 0
7f5378021000-7f537c000000 ---p 00000000 00:00 0
7f5380000000-7f53800e3000 rw-p 00000000 00:00 0
7f53800e3000-7f5384000000 ---p 00000000 00:00 0
7f5384000000-7f538716f000 rw-p 00000000 00:00 0
7f538716f000-7f5388000000 ---p 00000000 00:00 0
7f5388000000-7f5388023000 rw-p 00000000 00:00 0
7f5388023000-7f538c000000 ---p 00000000 00:00 0
7f538c000000-7f5390000000 rw-p 00000000 00:00 0
7f5390000000-7f53903e1000 rw-p 00000000 00:00 0
7f53903e1000-7f5394000000 ---p 00000000 00:00 0
7f5394282000-7f5394299000 r-xp 00000000 08:01 15205725 /lib/x86_64-linux-gnu/libresolv-2.23.so
7f5394299000-7f5394499000 ---p 00017000 08:01 15205725 /lib/x86_64-linux-gnu/libresolv-2.23.so
7f5394499000-7f539449a000 r--p 00017000 08:01 15205725 /lib/x86_64-linux-gnu/libresolv-2.23.so
7f539449a000-7f539449b000 rw-p 00018000 08:01 15205725 /lib/x86_64-linux-gnu/libresolv-2.23.so
7f539449b000-7f539449d000 rw-p 00000000 00:00 0
7f5395917000-7f5395922000 r-xp 00000000 08:01 15205724 /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f5395922000-7f5395b21000 ---p 0000b000 08:01 15205724 /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f5395b21000-7f5395b22000 r--p 0000a000 08:01 15205724 /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f5395b22000-7f5395b23000 rw-p 0000b000 08:01 15205724 /lib/x86_64-linux-gnu/libnss_files-2.23.so
7f5395b23000-7f5395b29000 rw-p 00000000 00:00 0
7f5398000000-7f5398023000 rw-p 00000000 00:00 0
7f5398023000-7f539c000000 ---p 00000000 00:00 0
7f539cf78000-7f539cf79000 ---p 00000000 00:00 0
7f539cf79000-7f539d779000 rw-p 00000000 00:00 0
7f539d77c000-7f539d781000 r-xp 00000000 08:01 15205723 /lib/x86_64-linux-gnu/libnss_dns-2.23.so
7f539d781000-7f539d981000 ---p 00005000 08:01 15205723 /lib/x86_64-linux-gnu/libnss_dns-2.23.so
7f539d981000-7f539d982000 r--p 00005000 08:01 15205723 /lib/x86_64-linux-gnu/libnss_dns-2.23.so
7f539d982000-7f539d983000 rw-p 00006000 08:01 15205723 /lib/x86_64-linux-gnu/libnss_dns-2.23.so
7f539dda1000-7f539dda3000 r-xp 00000000 08:01 15208898 /lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7f539dda3000-7f539dfa2000 ---p 00002000 08:01 15208898 /lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7f539dfa2000-7f539dfa3000 r--p 00001000 08:01 15208898 /lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7f539dfa3000-7f539dfa4000 rw-p 00002000 08:01 15208898 /lib/x86_64-linux-gnu/libnss_mdns4_minimal.so.2
7f53a0000000-7f53a0023000 rw-p 00000000 00:00 0
7f53a0023000-7f53a4000000 ---p 00000000 00:00 0
7f53a8000000-7f53a8021000 rw-p 00000000 00:00 0
7f53a8021000-7f53ac000000 ---p 00000000 00:00 0
7f53ac000000-7f53b0000000 rw-p 00000000 00:00 0
7f53b0000000-7f53b0021000 rw-p 00000000 00:00 0
7f53b0021000-7f53b4000000 ---p 00000000 00:00 0
7f53b4a46000-7f53b4a47000 ---p 00000000 00:00 0
7f53b4a47000-7f53b5247000 rw-p 00000000 00:00 0
7f53b529b000-7f53b529c000 ---p 00000000 00:00 0
7f53b529c000-7f53b5a9c000 rw-p 00000000 00:00 0
7f53b6ad0000-7f53b6ad5000 r-xp 00000000 08:01 25173681 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f53b6ad5000-7f53b6cd4000 ---p 00005000 08:01 25173681 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f53b6cd4000-7f53b6cd5000 r--p 00004000 08:01 25173681 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f53b6cd5000-7f53b6cd6000 rw-p 00005000 08:01 25173681 /usr/lib/x86_64-linux-gnu/libXfixes.so.3.1.0
7f53b6cd6000-7f53b6cdf000 r-xp 00000000 08:01 25173699 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7f53b6cdf000-7f53b6ede000 ---p 00009000 08:01 25173699 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7f53b6ede000-7f53b6edf000 r--p 00008000 08:01 25173699 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7f53b6edf000-7f53b6ee0000 rw-p 00009000 08:01 25173699 /usr/lib/x86_64-linux-gnu/libXrender.so.1.3.0
7f53b6ee0000-7f53b6ee9000 r-xp 00000000 08:01 25173673 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7f53b6ee9000-7f53b70e8000 ---p 00009000 08:01 25173673 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7f53b70e8000-7f53b70e9000 r--p 00008000 08:01 25173673 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7f53b70e9000-7f53b70ea000 rw-p 00009000 08:01 25173673 /usr/lib/x86_64-linux-gnu/libXcursor.so.1.0.2
7f53b70ea000-7f53b70eb000 ---p 00000000 00:00 0
7f53b70eb000-7f53b78eb000 rw-p 00000000 00:00 0
7f53b78eb000-7f53b7d41000 r--p 00000000 08:01 25168314 /usr/lib/locale/locale-archive
7f53b7d41000-7f53b7d65000 r-xp 00000000 08:01 15208934 /lib/x86_64-linux-gnu/libpng12.so.0.54.0
7f53b7d65000-7f53b7f64000 ---p 00024000 08:01 15208934 /lib/x86_64-linux-gnu/libpng12.so.0.54.0
7f53b7f64000-7f53b7f65000 r--p 00023000 08:01 15208934 /lib/x86_64-linux-gnu/libpng12.so.0.54.0
7f53b7f65000-7f53b7f66000 rw-p 00024000 08:01 15208934 /lib/x86_64-linux-gnu/libpng12.so.0.54.0
7f53b7f66000-7f53b7f7f000 r-xp 00000000 08:01 15208984 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f53b7f7f000-7f53b817e000 ---p 00019000 08:01 15208984 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f53b817e000-7f53b817f000 r--p 00018000 08:01 15208984 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f53b817f000-7f53b8180000 rw-p 00019000 08:01 15208984 /lib/x86_64-linux-gnu/libz.so.1.2.8
7f53b8180000-7f53b81a6000 r-xp 00000000 08:01 15204523 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f53b81a6000-7f53b83a6000 ---p 00026000 08:01 15204523 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f53b83a6000-7f53b83a8000 r--p 00026000 08:01 15204523 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f53b83a8000-7f53b83a9000 rw-p 00028000 08:01 15204523 /lib/x86_64-linux-gnu/libexpat.so.1.6.0
7f53b83a9000-7f53b83ae000 r-xp 00000000 08:01 25173677 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f53b83ae000-7f53b85ad000 ---p 00005000 08:01 25173677 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f53b85ad000-7f53b85ae000 r--p 00004000 08:01 25173677 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f53b85ae000-7f53b85af000 rw-p 00005000 08:01 25173677 /usr/lib/x86_64-linux-gnu/libXdmcp.so.6.0.0
7f53b85af000-7f53b85b1000 r-xp 00000000 08:01 25173666 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f53b85b1000-7f53b87b1000 ---p 00002000 08:01 25173666 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f53b87b1000-7f53b87b2000 r--p 00002000 08:01 25173666 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f53b87b2000-7f53b87b3000 rw-p 00003000 08:01 25173666 /usr/lib/x86_64-linux-gnu/libXau.so.6.0.0
7f53b87b3000-7f53b8972000 r-xp 00000000 08:01 15205642 /lib/x86_64-linux-gnu/libc-2.23.so
7f53b8972000-7f53b8b72000 ---p 001bf000 08:01 15205642 /lib/x86_64-linux-gnu/libc-2.23.so
7f53b8b72000-7f53b8b76000 r--p 001bf000 08:01 15205642 /lib/x86_64-linux-gnu/libc-2.23.so
7f53b8b76000-7f53b8b78000 rw-p 001c3000 08:01 15205642 /lib/x86_64-linux-gnu/libc-2.23.so
7f53b8b78000-7f53b8b7c000 rw-p 00000000 00:00 0
7f53b8b7c000-7f53b8b92000 r-xp 00000000 08:01 15204366 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f53b8b92000-7f53b8d91000 ---p 00016000 08:01 15204366 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f53b8d91000-7f53b8d92000 rw-p 00015000 08:01 15204366 /lib/x86_64-linux-gnu/libgcc_s.so.1
7f53b8d92000-7f53b8e9a000 r-xp 00000000 08:01 15205718 /lib/x86_64-linux-gnu/libm-2.23.so
7f53b8e9a000-7f53b9099000 ---p 00108000 08:01 15205718 /lib/x86_64-linux-gnu/libm-2.23.so
7f53b9099000-7f53b909a000 r--p 00107000 08:01 15205718 /lib/x86_64-linux-gnu/libm-2.23.so
7f53b909a000-7f53b909b000 rw-p 00108000 08:01 15205718 /lib/x86_64-linux-gnu/libm-2.23.so
7f53b909b000-7f53b90a2000 r-xp 00000000 08:01 15204627 /lib/x86_64-linux-gnu/librt-2.23.so
7f53b90a2000-7f53b92a1000 ---p 00007000 08:01 15204627 /lib/x86_64-linux-gnu/librt-2.23.so
7f53b92a1000-7f53b92a2000 r--p 00006000 08:01 15204627 /lib/x86_64-linux-gnu/librt-2.23.so
7f53b92a2000-7f53b92a3000 rw-p 00007000 08:01 15204627 /lib/x86_64-linux-gnu/librt-2.23.so
7f53b92a3000-7f53b92a6000 r-xp 00000000 08:01 15204631 /lib/x86_64-linux-gnu/libanl-2.23.so
7f53b92a6000-7f53b94a5000 ---p 00003000 08:01 15204631 /lib/x86_64-linux-gnu/libanl-2.23.so
7f53b94a5000-7f53b94a6000 r--p 00002000 08:01 15204631 /lib/x86_64-linux-gnu/libanl-2.23.so
7f53b94a6000-7f53b94a7000 rw-p 00003000 08:01 15204631 /lib/x86_64-linux-gnu/libanl-2.23.so
7f53b94a7000-7f53b94aa000 r-xp 00000000 08:01 15205638 /lib/x86_64-linux-gnu/libdl-2.23.so
7f53b94aa000-7f53b96a9000 ---p 00003000 08:01 15205638 /lib/x86_64-linux-gnu/libdl-2.23.so
7f53b96a9000-7f53b96aa000 r--p 00002000 08:01 15205638 /lib/x86_64-linux-gnu/libdl-2.23.so
7f53b96aa000-7f53b96ab000 rw-p 00003000 08:01 15205638 /lib/x86_64-linux-gnu/libdl-2.23.so
7f53b96ab000-7f53b96c3000 r-xp 00000000 08:01 15205719 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f53b96c3000-7f53b98c2000 ---p 00018000 08:01 15205719 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f53b98c2000-7f53b98c3000 r--p 00017000 08:01 15205719 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f53b98c3000-7f53b98c4000 rw-p 00018000 08:01 15205719 /lib/x86_64-linux-gnu/libpthread-2.23.so
7f53b98c4000-7f53b98c8000 rw-p 00000000 00:00 0
7f53b98c8000-7f53b996c000 r-xp 00000000 08:01 25170959 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.12.1
7f53b996c000-7f53b9b6b000 ---p 000a4000 08:01 25170959 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.12.1
7f53b9b6b000-7f53b9b71000 r--p 000a3000 08:01 25170959 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.12.1
7f53b9b71000-7f53b9b72000 rw-p 000a9000 08:01 25170959 /usr/lib/x86_64-linux-gnu/libfreetype.so.6.12.1
7f53b9b72000-7f53b9baf000 r-xp 00000000 08:01 25165974 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.9.0
7f53b9baf000-7f53b9dae000 ---p 0003d000 08:01 25165974 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.9.0
7f53b9dae000-7f53b9db0000 r--p 0003c000 08:01 25165974 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.9.0
7f53b9db0000-7f53b9db5000 rw-p 0003e000 08:01 25165974 /usr/lib/x86_64-linux-gnu/libfontconfig.so.1.9.0
7f53b9db5000-7f53b9dd6000 r-xp 00000000 08:01 25175033 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f53b9dd6000-7f53b9fd5000 ---p 00021000 08:01 25175033 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f53b9fd5000-7f53b9fd6000 r--p 00020000 08:01 25175033 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f53b9fd6000-7f53b9fd7000 rw-p 00021000 08:01 25175033 /usr/lib/x86_64-linux-gnu/libxcb.so.1.1.0
7f53b9fd7000-7f53ba10c000 r-xp 00000000 08:01 25173662 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f53ba10c000-7f53ba30c000 ---p 00135000 08:01 25173662 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f53ba30c000-7f53ba30d000 r--p 00135000 08:01 25173662 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f53ba30d000-7f53ba311000 rw-p 00136000 08:01 25173662 /usr/lib/x86_64-linux-gnu/libX11.so.6.3.0
7f53ba311000-7f53ba312000 r-xp 00000000 08:01 25173660 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f53ba312000-7f53ba511000 ---p 00001000 08:01 25173660 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f53ba511000-7f53ba512000 r--p 00000000 08:01 25173660 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f53ba512000-7f53ba513000 rw-p 00001000 08:01 25173660 /usr/lib/x86_64-linux-gnu/libX11-xcb.so.1.0.0
7f53ba513000-7f53ba539000 r-xp 00000000 08:01 15204569 /lib/x86_64-linux-gnu/ld-2.23.so
7f53ba5e4000-7f53ba5e5000 rw-p 00000000 00:00 0
7f53ba5e5000-7f53ba5e9000 r--s 00000000 08:01 12856295 /var/cache/fontconfig/6aa41aa22e18b8fa06a12da28ea9c28b-le64.cache-6
7f53ba5e9000-7f53ba5f4000 r--s 00000000 08:01 12856294 /var/cache/fontconfig/945677eb7aeaf62f1d50efc3fb3ec7d8-le64.cache-6
7f53ba5f4000-7f53ba5f6000 r--s 00000000 08:01 12856288 /var/cache/fontconfig/99e8ed0e538f840c565b6ed5dad60d56-le64.cache-6
7f53ba5f6000-7f53ba5ff000 r--s 00000000 08:01 12856287 /var/cache/fontconfig/a6d8cf8e4ec09cdbc8633c31745a07dd-le64.cache-6
7f53ba5ff000-7f53ba605000 r--s 00000000 08:01 12856285 /var/cache/fontconfig/2cd17615ca594fa2959ae173292e504c-le64.cache-6
7f53ba605000-7f53ba606000 r--s 00000000 08:01 12856284 /var/cache/fontconfig/0d8c3b2ac0904cb8a57a757ad11a4a08-le64.cache-6
7f53ba606000-7f53ba61b000 r--s 00000000 08:01 12856283 /var/cache/fontconfig/04aabc0a78ac019cf9454389977116d2-le64.cache-6
7f53ba61b000-7f53ba61c000 r--s 00000000 08:01 12856282 /var/cache/fontconfig/1ac9eb803944fde146138c791f5cc56a-le64.cache-6
7f53ba61c000-7f53ba620000 r--s 00000000 08:01 12856281 /var/cache/fontconfig/385c0604a188198f04d133e54aba7fe7-le64.cache-6
7f53ba620000-7f53ba621000 r--s 00000000 08:01 12856280 /var/cache/fontconfig/dc05db6664285cc2f12bf69c139ae4c3-le64.cache-6
7f53ba621000-7f53ba624000 r--s 00000000 08:01 12856279 /var/cache/fontconfig/767a8244fc0220cfb567a839d0392e0b-le64.cache-6
7f53ba624000-7f53ba625000 r--s 00000000 08:01 12856260 /var/cache/fontconfig/4794a0821666d79190d59a36cb4f44b5-le64.cache-6
7f53ba625000-7f53ba62a000 r--s 00000000 08:01 12856259 /var/cache/fontconfig/8801497958630a81b71ace7c5f9b32a8-le64.cache-6
7f53ba62a000-7f53ba665000 r--s 00000000 08:01 27009524 /home/bitc/.cache/fontconfig/365b55f210c0a22e9a19e35191240f32-le64.cache-6
7f53ba665000-7f53ba666000 r--s 00000000 08:01 12856254 /var/cache/fontconfig/bab58bb527bb656aaa9f116d68a48d89-le64.cache-6
7f53ba666000-7f53ba66d000 r--s 00000000 08:01 12856250 /var/cache/fontconfig/3047814df9a2f067bd2d96a2b9c36e5a-le64.cache-6
7f53ba66d000-7f53ba675000 r--s 00000000 08:01 12856245 /var/cache/fontconfig/bf3b770c553c462765856025a94f1ce6-le64.cache-6
7f53ba675000-7f53ba676000 r--s 00000000 08:01 12856244 /var/cache/fontconfig/56cf4f4769d0f4abc89a4895d7bd3ae1-le64.cache-6
7f53ba676000-7f53ba677000 r--s 00000000 08:01 12856243 /var/cache/fontconfig/b9d506c9ac06c20b433354fa67a72993-le64.cache-6
7f53ba677000-7f53ba67d000 r--s 00000000 08:01 12856242 /var/cache/fontconfig/b47c4e1ecd0709278f4910c18777a504-le64.cache-6
7f53ba67d000-7f53ba685000 r--s 00000000 08:01 12856241 /var/cache/fontconfig/52f7bdb7ce746bfd7eaa1985bd9cfa93-le64.cache-6
7f53ba685000-7f53ba698000 r--s 00000000 08:01 12856240 /var/cache/fontconfig/d52a8644073d54c13679302ca1180695-le64.cache-6
7f53ba698000-7f53ba699000 r--s 00000000 08:01 12856239 /var/cache/fontconfig/551ecf3b0e8b0bca0f25c0944f561853-le64.cache-6
7f53ba699000-7f53ba6a4000 r--s 00000000 08:01 12856238 /var/cache/fontconfig/d589a48862398ed80a3d6066f4f56f4c-le64.cache-6
7f53ba6a4000-7f53ba6a8000 r--s 00000000 08:01 12856237 /var/cache/fontconfig/246184dc75a16901ca37d96895904249-le64.cache-6
7f53ba6a8000-7f53ba6a9000 r--s 00000000 08:01 12856236 /var/cache/fontconfig/30829fa25452a46451e813d634d7f916-le64.cache-6
7f53ba6a9000-7f53ba6aa000 r--s 00000000 08:01 12856235 /var/cache/fontconfig/0c9eb80ebd1c36541ebe2852d3bb0c49-le64.cache-6
7f53ba6aa000-7f53ba6ad000 r--s 00000000 08:01 12856233 /var/cache/fontconfig/75114ca45c98e8a441da0ff356701271-le64.cache-6
7f53ba6ad000-7f53ba6b8000 r--s 00000000 08:01 12856232 /var/cache/fontconfig/83bf95040141907cd45bb53cf7c1c148-le64.cache-6
7f53ba6b8000-7f53ba6ca000 r--s 00000000 08:01 12856231 /var/cache/fontconfig/9b89f8e3dae116d678bbf48e5f21f69b-le64.cache-6
7f53ba6ca000-7f53ba6ce000 r--s 00000000 08:01 12856230 /var/cache/fontconfig/6c08beecf0dac481ec92e759e0c2e6d7-le64.cache-6
7f53ba6ce000-7f53ba6d2000 r--s 00000000 08:01 12856229 /var/cache/fontconfig/4d6aee6d44eccb37054d3216e945f618-le64.cache-6
7f53ba6d2000-7f53ba6d6000 r--s 00000000 08:01 12856228 /var/cache/fontconfig/d6c6df98c3df5faf9bd0f8ef4d91efe5-le64.cache-6
7f53ba6d6000-7f53ba6da000 r--s 00000000 08:01 12855797 /var/cache/fontconfig/9fb319ef52839f11ee26ab8b4cffa12b-le64.cache-6
7f53ba6da000-7f53ba6f0000 r--s 00000000 08:01 12856226 /var/cache/fontconfig/e13b20fdb08344e0e664864cc2ede53d-le64.cache-6
7f53ba6f0000-7f53ba6f5000 r--s 00000000 08:01 12848600 /var/cache/fontconfig/7ef2298fde41cc6eeb7af42e48b7d293-le64.cache-6
7f53ba6f5000-7f53ba6f7000 r--s 00000000 08:01 12856299 /var/cache/fontconfig/16326683038b281783a0ef8c680e3a10-le64.cache-6
7f53ba6f7000-7f53ba704000 r--s 00000000 08:01 12856298 /var/cache/fontconfig/8f02d4cb045bd6ce15663e43f347c9f8-le64.cache-6
7f53ba704000-7f53ba705000 r--s 00000000 08:01 12856297 /var/cache/fontconfig/e0aa53bcfa504e64f87823c16bc01eb6-le64.cache-6
7f53ba705000-7f53ba70e000 rw-p 00000000 00:00 0
7f53ba70e000-7f53ba72f000 r--s 00000000 08:01 12850286 /var/cache/fontconfig/467c019e582ee353435ea5c21d137ef6-le64.cache-6
7f53ba72f000-7f53ba736000 r--s 00000000 08:01 25563725 /usr/lib/x86_64-linux-gnu/gconv/gconv-modules.cache
7f53ba736000-7f53ba738000 rw-p 00000000 00:00 0
7f53ba738000-7f53ba739000 r--p 00025000 08:01 15204569 /lib/x86_64-linux-gnu/ld-2.23.so
7f53ba739000-7f53ba73a000 rw-p 00026000 08:01 15204569 /lib/x86_64-linux-gnu/ld-2.23.so
7f53ba73a000-7f53ba73b000 rw-p 00000000 00:00 0
7ffe46c8c000-7ffe46cad000 rw-p 00000000 00:00 0 [stack]
7ffe46cf1000-7ffe46cf3000 r--p 00000000 00:00 0 [vvar]
7ffe46cf3000-7ffe46cf5000 r-xp 00000000 00:00 0 [vdso]
ffffffffff600000-ffffffffff601000 r-xp 00000000 00:00 0 [vsyscall]

Wallet disabled in pruned nodes

I run a pruned node and I need the wallet, but pruning disables by default the wallet. Wallet works in the latest version of core, but I couldn't find the appropriate commit, which enables the wallet in pruned nodes. Maybe someone could find and merge this commit?

tab/space mixed

There are some new codes using tab as indentation instead of space, and make code looks confusing.
for example:

            if (depth < excessiveAcceptDepth)
          {
        fRecentExcessive |= ((pindexTest->nStatus & BLOCK_EXCESSIVE) != 0);  // Unlimited: deny this candidate chain if there's a recent excessive block
          }
            else
          {
        fOldExcessive |= ((pindexTest->nStatus & BLOCK_EXCESSIVE) != 0);  // Unlimited: unless there is an even older excessive block
          }

Segregated witness.

Historically, forks of Bitcoin Core (such as Bitcoin Classic, and Bitcoin XT) have fallen far behind on updates to network consensus behavior.

I noticed that BU doesn't have a ticket to implement segwit and doesn't appear to have started on implementation. The segwit proposal and consensus rules have been stable for six months now, and implementation in core is complete and getting the final little bit of preactivation tweaks and improvements. Segwit been active and testing well on testnet for months... so it's coming close to deployment time.

I'm interested in knowing BU's plans for SW implementation and deployment.

Segwit is specified in the following documents:

https://github.com/bitcoin/bips/blob/master/bip-0141.mediawiki
https://github.com/bitcoin/bips/blob/master/bip-0143.mediawiki
https://github.com/bitcoin/bips/blob/master/bip-0144.mediawiki
https://github.com/bitcoin/bips/blob/master/bip-0145.mediawiki
and implemented in Bitcoin Core: bitcoin#8149

Monero planning on implementing compact blocks/XThin

Hi all,

I'm from the monero community and thought I should let you know that one of the devs is currently implementing the compact blocks protocol (monero-project/monero#1242).

Would love to receive any help regarding a well-specified version of XThin in addition or alternatively because this is an area where a bit of cross-pollination could be helpful. The lack of firm specification is one of the key reasons it's not being developed for Monero at this point.

Edit: Have closed this because it's probably better to ask in Reddit instead.

1.0.0, block generation can exceed configured configured value depending on coinbase

The block generation in 1.0.0 is only reserving 100 bytes for the coinbase, but this can be exceeded (the reservation only takes into account the coinbase string, not the full tx). This can cause blocks to exceed 1MB.

As a workaround, run: ./bitcoin-cli setminingmaxblock 999000

Additionally, miners often take the block generated by getblocktemplate, remove the coinbase, and replace it with their own with a more complex payment. So the space alloted to the coinbase should be configurable, and default to 1000 to match previous releases.

MAX_OUTBOUND_CONNECTIONS should be per address family

MAX_OUTBOUND_CONNECTIONS is currently limited to 8 connections and doesn't separate IPv4/IPv6 connections. So there is cases when you could connect to 8 IPv4 nodes even though you have IPv6 available.

As IPv4 and IPv6 completely separate networks and usually with different routing, BU should treat them separately and make 8 IPv4 and 8 IPv6 connections. Otherwise current implementation make IPv6 protocol less interconnected for nodes.

libpng errors on start

I'm getting two libpng errors when launching qt from command line.

libpng warning : iccp: known incorrect sRGB profile
" " cHRM chunk does not match sRGB

Can you please use your full name instead of "Bitcoin" ?

I noticed the merge of commit 37214f7 recently which renames many usages of "Bitcoin Core" to "Bitcoin" in GUI dialogs, logs and configure scripts.

Please refer in the software and in the sourcecode to Bitcoin Unlimited by its full name. I think it is a safe path to take in order to avoid even some feeling like you take ownership of the global brand name, we know thats not what you meant, but some may see it as such. Notice that Bitcoin is trademarked in parts of the world to avoid this, and I think we should set a good example.

Cheers!

Error on build on OSX (protobuf error?)

Error related protobuf:

I have installed protobuf through homebrew.
brew install --c++-11 [email protected] (Previously got errors that the newest version is not supported)

System:
OSX 10.11.6

procedure:

env \
CXXFLAGS='-std=c++11'  \
CPPFLAGS='-I/usr/local/Cellar/openssl/1.0.2h_1/include -I/usr/local/Cellar/qt5/5.8.0_1/include -I/usr/local/opt/[email protected]/include' \
LDFLAGS='-L/usr/local/Cellar/openssl/1.0.2h_1/lib -L/usr/local/Cellar/qt5/5.8.0_1/lib -L/usr/local/opt/[email protected]/lib' \
./configure
make
In file included from ./compat/endian.h:14:
./compat/byteswap.h:34:17: error: functions that differ only in their return type cannot be overloaded
inline uint64_t bswap_64(uint64_t x)
                ^
/usr/local/Cellar/[email protected]/3.1.0/include/google/protobuf/stubs/port.h:300:21: note: expanded from macro 'bswap_64'
#define bswap_64(x) OSSwapInt64(x)
                    ^
/usr/include/libkern/OSByteOrder.h:56:24: note: expanded from macro 'OSSwapInt64'
#define OSSwapInt64(x)  __DARWIN_OSSwapInt64(x)
                        ^
/usr/include/libkern/_OSByteOrder.h:78:6: note: expanded from macro '__DARWIN_OSSwapInt64'
    (__builtin_constant_p(x) ? __DARWIN_OSSwapConstInt64(x) : _OSSwapInt64(x))
     ^
/usr/local/Cellar/[email protected]/3.1.0/include/google/protobuf/stubs/port.h:392:47: note: previous implicit declaration is here
  static uint16 FromHost16(uint16 x) { return bswap_16(x); }
                                              ^
/usr/local/Cellar/[email protected]/3.1.0/include/google/protobuf/stubs/port.h:298:21: note: expanded from macro 'bswap_16'
#define bswap_16(x) OSSwapInt16(x)
                    ^
/usr/include/libkern/OSByteOrder.h:54:24: note: expanded from macro 'OSSwapInt16'
#define OSSwapInt16(x)  __DARWIN_OSSwapInt16(x)
                        ^
/usr/include/libkern/_OSByteOrder.h:72:19: note: expanded from macro '__DARWIN_OSSwapInt16'
    ((__uint16_t)(__builtin_constant_p(x) ? __DARWIN_OSSwapConstInt16(x) : _OSSwapInt16(x)))
                  ^
8 errors generated.
make[2]: *** [qt/qt_libbitcoinqt_a-askpassphrasedialog.o] Error 1
make[1]: *** [all-recursive] Error 1
make: *** [all-recursive] Error 1
macc:BitcoinUnlimited izzy$ 

Debug Window - Peers Tab doesn't always reflect changes related to banned nodes.

Environment: Windows 10
Client: v0.12.1c - built from source (32-bit)

On the "Debug window" dialog, the banned nodes table, which appears below the currently connected nodes list when banned nodes are present, does not update when nodes have been banned/unbanned by any means other than direct user action, specifically related to banning/unbanning nodes, either through the UI or RPC calls. Upon direct user interaction through the UI/RPC to ban/unban a node, the UI then updates to correctly display the state of all banned nodes, regardless if it was the specific node the user interacted with.

Symptoms:

  1. When the ban time expires and a node is no longer banned, the banned peer table doesn't refresh to remove it. This can cause the node to show up both in the banned peer table AND as a connected node if it successfully reconnects.
  2. I also detected a secondary issue, that when a ban expires, the RPC call listbanned still contains the node, even though the ban has expired AND the node has successfully reconnected.
  3. When a node gets banned due to some internally detected reason (misbehaving), the banned peer table does not refresh to add it.

The only way I've gotten the UI to update is by manually setting the ban state of a node through UI or RPC, or by restarting bitcoin-qt.exe. Closing and reopening the dialog does not seem to cause a refresh.

Crash after node running for a week

BEGIN ERROR MESSAGE ON MAC OS

Process: Bitcoin-Qt [4430]
Path: /Applications/Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt
Identifier: org.bitcoinfoundation.Bitcoin-Qt
Version: 0.12.1 (0.12.1)
Code Type: X86-64 (Native)
Parent Process: ??? [1]
Responsible: Bitcoin-Qt [4430]
User ID: 501

Date/Time: 2016-11-22 20:15:56.776 -0800
OS Version: Mac OS X 10.11.6 (15G1108)
Report Version: 11
Anonymous UUID: 5D6291E7-684C-53DF-7721-762FAD3B7970

Time Awake Since Boot: 550000 seconds

System Integrity Protection: enabled

Crashed Thread: 15 bitcoin-msghand

Exception Type: EXC_BAD_ACCESS (SIGSEGV)
Exception Codes: EXC_I386_GPFLT
Exception Note: EXC_CORPSE_NOTIFY

Thread 0:: Dispatch queue: com.apple.main-thread
0 libsystem_kernel.dylib 0x00007fff8b3cdf72 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8b3cd3b3 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff85719124 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff857185ec __CFRunLoopRun + 1356
4 com.apple.CoreFoundation 0x00007fff85717e38 CFRunLoopRunSpecific + 296
5 com.apple.HIToolbox 0x00007fff93a1a935 RunCurrentEventLoopInMode + 235
6 com.apple.HIToolbox 0x00007fff93a1a76f ReceiveNextEventCommon + 432
7 com.apple.HIToolbox 0x00007fff93a1a5af _BlockUntilNextEventMatchingListInModeWithFilter + 71
8 com.apple.AppKit 0x00007fff98042df6 _DPSNextEvent + 1067
9 com.apple.AppKit 0x00007fff98042226 -[NSApplication _nextEventMatchingEventMask:untilDate:inMode:dequeue:] + 454
10 com.apple.AppKit 0x00007fff98036d80 -[NSApplication run] + 682
11 org.bitcoinfoundation.Bitcoin-Qt 0x000000010231d920 0x101e11000 + 5294368
12 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102aefcdd 0x101e11000 + 13495517
13 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102af2a95 0x101e11000 + 13507221
14 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101e26edf 0x101e11000 + 89823
15 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101e241f4 0x101e11000 + 78324

Thread 1:: Dispatch queue: com.apple.libdispatch-manager
0 libsystem_kernel.dylib 0x00007fff8b3d4efa kevent_qos + 10
1 libdispatch.dylib 0x00007fff8429f165 _dispatch_mgr_invoke + 216
2 libdispatch.dylib 0x00007fff8429edcd _dispatch_mgr_thread + 52

Thread 2:: com.apple.CFSocket.private
0 libsystem_kernel.dylib 0x00007fff8b3d407a __select + 10
1 com.apple.CoreFoundation 0x00007fff8575645a __CFSocketManager + 762
2 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
3 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
4 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 3:: QThread
0 libsystem_kernel.dylib 0x00007fff8b3d407a __select + 10
1 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2bee3 0x101e11000 + 13741795
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2c968 0x101e11000 + 13744488
3 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2d84b 0x101e11000 + 13748299
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102aefcdd 0x101e11000 + 13495517
5 org.bitcoinfoundation.Bitcoin-Qt 0x00000001029a5dfe 0x101e11000 + 12144126
6 org.bitcoinfoundation.Bitcoin-Qt 0x00000001029a94e2 0x101e11000 + 12158178
7 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
9 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 4:: QThread
0 libsystem_kernel.dylib 0x00007fff8b3d407a __select + 10
1 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2bee3 0x101e11000 + 13741795
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2c968 0x101e11000 + 13744488
3 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2d84b 0x101e11000 + 13748299
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102aefcdd 0x101e11000 + 13495517
5 org.bitcoinfoundation.Bitcoin-Qt 0x00000001029a5dfe 0x101e11000 + 12144126
6 org.bitcoinfoundation.Bitcoin-Qt 0x00000001029a94e2 0x101e11000 + 12158178
7 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
9 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 5:: bitcoin-scriptch
0 libsystem_kernel.dylib 0x00007fff8b3d3db6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff8ebf9728 _pthread_cond_wait + 767
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101e38adb 0x101e11000 + 162523
3 org.bitcoinfoundation.Bitcoin-Qt 0x000000010204278f 0x101e11000 + 2299791
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101ffbcde 0x101e11000 + 2010334
5 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fc1d4a 0x101e11000 + 1772874
6 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
7 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
9 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 6:: bitcoin-scriptch
0 libsystem_kernel.dylib 0x00007fff8b3d3db6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff8ebf9728 _pthread_cond_wait + 767
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101e38adb 0x101e11000 + 162523
3 org.bitcoinfoundation.Bitcoin-Qt 0x000000010204278f 0x101e11000 + 2299791
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101ffbcde 0x101e11000 + 2010334
5 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fc1d4a 0x101e11000 + 1772874
6 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
7 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
9 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 7:: bitcoin-scriptch
0 libsystem_kernel.dylib 0x00007fff8b3d3db6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff8ebf9728 _pthread_cond_wait + 767
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101e38adb 0x101e11000 + 162523
3 org.bitcoinfoundation.Bitcoin-Qt 0x000000010204278f 0x101e11000 + 2299791
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101ffbcde 0x101e11000 + 2010334
5 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fc1d4a 0x101e11000 + 1772874
6 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
7 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
9 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 8:: bitcoin-scheduler
0 libsystem_kernel.dylib 0x00007fff8b3d3db6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff8ebf9728 _pthread_cond_wait + 767
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102297ad9 0x101e11000 + 4745945
3 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102295e6c 0x101e11000 + 4738668
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fc1c81 0x101e11000 + 1772673
5 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fb6740 0x101e11000 + 1726272
6 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fc145e 0x101e11000 + 1770590
7 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fc13d1 0x101e11000 + 1770449
8 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
9 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
10 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
11 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 9:: com.apple.NSEventThread
0 libsystem_kernel.dylib 0x00007fff8b3cdf72 mach_msg_trap + 10
1 libsystem_kernel.dylib 0x00007fff8b3cd3b3 mach_msg + 55
2 com.apple.CoreFoundation 0x00007fff85719124 __CFRunLoopServiceMachPort + 212
3 com.apple.CoreFoundation 0x00007fff857185ec __CFRunLoopRun + 1356
4 com.apple.CoreFoundation 0x00007fff85717e38 CFRunLoopRunSpecific + 296
5 com.apple.AppKit 0x00007fff98198d95 _NSEventThread + 149
6 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
7 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
8 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 10:
0 libsystem_kernel.dylib 0x00007fff8b3d3db6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff8ebf9728 _pthread_cond_wait + 767
2 org.bitcoinfoundation.Bitcoin-Qt 0x00000001022f258b 0x101e11000 + 5117323
3 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
4 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
5 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 11:: bitcoin-torcontrol
0 libsystem_kernel.dylib 0x00007fff8b3d52a2 poll + 10
1 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102e0c540 0x101e11000 + 16758080
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102e00f28 0x101e11000 + 16711464
3 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102138c2f 0x101e11000 + 3308591
4 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213963c 0x101e11000 + 3311164
5 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213993b 0x101e11000 + 3311931
6 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
7 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
9 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 12:: bitcoin-net
0 libsystem_kernel.dylib 0x00007fff8b3d407a __select + 10
1 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102087589 0x101e11000 + 2581897
2 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213963c 0x101e11000 + 3311164
3 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213993b 0x101e11000 + 3311931
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
5 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
6 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
7 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 13:: bitcoin-addcon
0 libsystem_kernel.dylib 0x00007fff8b3d3db6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff8ebf9728 _pthread_cond_wait + 767
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102297ad9 0x101e11000 + 4745945
3 org.bitcoinfoundation.Bitcoin-Qt 0x000000010230383e 0x101e11000 + 5187646
4 org.bitcoinfoundation.Bitcoin-Qt 0x00000001022b8db4 0x101e11000 + 4881844
5 org.bitcoinfoundation.Bitcoin-Qt 0x000000010208f060 0x101e11000 + 2613344
6 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213963c 0x101e11000 + 3311164
7 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213993b 0x101e11000 + 3311931
8 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
9 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
10 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
11 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 14:: bitcoin-opencon
0 libsystem_kernel.dylib 0x00007fff8b3d3db6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff8ebf9728 _pthread_cond_wait + 767
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101e38adb 0x101e11000 + 162523
3 org.bitcoinfoundation.Bitcoin-Qt 0x00000001020b1b45 0x101e11000 + 2755397
4 org.bitcoinfoundation.Bitcoin-Qt 0x000000010208dbbf 0x101e11000 + 2608063
5 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213963c 0x101e11000 + 3311164
6 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213993b 0x101e11000 + 3311931
7 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
8 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
9 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
10 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 15 Crashed:: bitcoin-msghand
0 libstdc++.6.dylib 0x00007fff93d7a356 std::_Rb_tree_increment(std::_Rb_tree_node_base*) + 34
1 org.bitcoinfoundation.Bitcoin-Qt 0x000000010212beb8 0x101e11000 + 3255992
2 org.bitcoinfoundation.Bitcoin-Qt 0x000000010200b629 0x101e11000 + 2074153
3 org.bitcoinfoundation.Bitcoin-Qt 0x000000010216bb84 0x101e11000 + 3517316
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102026292 0x101e11000 + 2183826
5 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fe4d82 0x101e11000 + 1916290
6 org.bitcoinfoundation.Bitcoin-Qt 0x000000010205bbcc 0x101e11000 + 2403276
7 org.bitcoinfoundation.Bitcoin-Qt 0x00000001020a9715 0x101e11000 + 2721557
8 org.bitcoinfoundation.Bitcoin-Qt 0x00000001020a9617 0x101e11000 + 2721303
9 org.bitcoinfoundation.Bitcoin-Qt 0x00000001020a7a28 0x101e11000 + 2714152
10 org.bitcoinfoundation.Bitcoin-Qt 0x000000010208f838 0x101e11000 + 2615352
11 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213963c 0x101e11000 + 3311164
12 org.bitcoinfoundation.Bitcoin-Qt 0x000000010213993b 0x101e11000 + 3311931
13 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
14 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
15 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
16 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 16:: bitcoin-wallet
0 libsystem_kernel.dylib 0x00007fff8b3d3db6 __psynch_cvwait + 10
1 libsystem_pthread.dylib 0x00007fff8ebf9728 _pthread_cond_wait + 767
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102297ad9 0x101e11000 + 4745945
3 org.bitcoinfoundation.Bitcoin-Qt 0x000000010230383e 0x101e11000 + 5187646
4 org.bitcoinfoundation.Bitcoin-Qt 0x00000001022b8db4 0x101e11000 + 4881844
5 org.bitcoinfoundation.Bitcoin-Qt 0x000000010222d37a 0x101e11000 + 4309882
6 org.bitcoinfoundation.Bitcoin-Qt 0x0000000101fb7ad4 0x101e11000 + 1731284
7 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102302e4a 0x101e11000 + 5185098
8 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
9 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
10 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 17:: Qt bearer thread
0 libsystem_kernel.dylib 0x00007fff8b3d407a __select + 10
1 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2bee3 0x101e11000 + 13741795
2 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2c968 0x101e11000 + 13744488
3 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102b2d84b 0x101e11000 + 13748299
4 org.bitcoinfoundation.Bitcoin-Qt 0x0000000102aefcdd 0x101e11000 + 13495517
5 org.bitcoinfoundation.Bitcoin-Qt 0x00000001029a5dfe 0x101e11000 + 12144126
6 org.bitcoinfoundation.Bitcoin-Qt 0x00000001029a94e2 0x101e11000 + 12158178
7 libsystem_pthread.dylib 0x00007fff8ebf899d _pthread_body + 131
8 libsystem_pthread.dylib 0x00007fff8ebf891a _pthread_start + 168
9 libsystem_pthread.dylib 0x00007fff8ebf6351 thread_start + 13

Thread 15 crashed with X86 Thread State (64-bit):
rax: 0x00007f98d9c8a880 rbx: 0x00007f98d9c8a880 rcx: 0x0000000000000000 rdx: 0x0000000000000fff
rdi: 0x500007f98d98cbda rsi: 0x00007f98d9c8a000 rbp: 0x00007000008bd880 rsp: 0x00007000008bd880
r8: 0x0000000000001000 r9: 0x0000000000000018 r10: 0x00000000e6daf30d r11: 0x0000000000000fff
r12: 0x00007f98e8b93af0 r13: 0x00007000008bd958 r14: 0x0000000103822498 r15: 0x000001588a3f557e
rip: 0x00007fff93d7a356 rfl: 0x0000000000010246 cr2: 0x000000011bcf5000

Logical CPU: 2
Error Code: 0x00000000
Trap Number: 13

Binary Images:
0x101e11000 - 0x103701ff7 +org.bitcoinfoundation.Bitcoin-Qt (0.12.1 - 0.12.1) /Applications/Bitcoin-Qt.app/Contents/MacOS/Bitcoin-Qt
0x1038d5000 - 0x1038d9fff com.apple.agl (3.3.1 - AGL-3.3.1) <4E401980-0F4F-33E2-A0CF-8C7CCF375F24> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
0x10a8aa000 - 0x10a8aaff7 +cl_kernels (???) cl_kernels
0x7fff687aa000 - 0x7fff687e1a47 dyld (360.22) /usr/lib/dyld
0x7fff84106000 - 0x7fff84108ff7 libRadiance.dylib (1460) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libRadiance.dylib
0x7fff84151000 - 0x7fff8419dfff com.apple.print.framework.PrintCore (11.2 - 472.2) <5AE8AA6B-CE09-397D-B0D4-0F9CCBF1F77D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/PrintCore.framework/Versions/A/PrintCore
0x7fff84297000 - 0x7fff842c4fff libdispatch.dylib (501.40.12) /usr/lib/system/libdispatch.dylib
0x7fff842c5000 - 0x7fff842f6fff com.apple.GSS (4.0 - 2.0) /System/Library/Frameworks/GSS.framework/Versions/A/GSS
0x7fff846e4000 - 0x7fff84700fff com.apple.GenerationalStorage (2.0 - 239.1) <8C821448-4294-3736-9CEF-467C93785CB9> /System/Library/PrivateFrameworks/GenerationalStorage.framework/Versions/A/GenerationalStorage
0x7fff84704000 - 0x7fff84705fff libsystem_blocks.dylib (65) <1244D9D5-F6AA-35BB-B307-86851C24B8E5> /usr/lib/system/libsystem_blocks.dylib
0x7fff84829000 - 0x7fff849cfff7 com.apple.audio.toolbox.AudioToolbox (1.13 - 1.13) <370E95BC-956C-3962-86CC-0A14CF6A0389> /System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox
0x7fff849d0000 - 0x7fff849dbfff libkxld.dylib (3248.60.11) <4F0110D1-66C6-3FF2-B30D-5AD4F34080E1> /usr/lib/system/libkxld.dylib
0x7fff84a25000 - 0x7fff84a27fff libCGXType.A.dylib (960.3) <70FA6D91-53BC-3DA6-92F3-7FEB33C73948> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
0x7fff84a28000 - 0x7fff84a5cff7 com.apple.CoreVideo (1.8 - 191.3) <1AA24A1B-CB84-3F6B-B6DE-11494542649C> /System/Library/Frameworks/CoreVideo.framework/Versions/A/CoreVideo
0x7fff84a5d000 - 0x7fff84ab2fff com.apple.AE (701 - 701) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/AE.framework/Versions/A/AE
0x7fff85484000 - 0x7fff85484fff libOpenScriptingUtil.dylib (169.1) /usr/lib/libOpenScriptingUtil.dylib
0x7fff85558000 - 0x7fff8567ffff com.apple.LaunchServices (728.13 - 728.13) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.framework/Versions/A/LaunchServices
0x7fff85680000 - 0x7fff85681ffb libremovefile.dylib (41) <552EF39E-14D7-363E-9059-4565AC2F894E> /usr/lib/system/libremovefile.dylib
0x7fff8568f000 - 0x7fff85b05ff7 com.apple.CoreFoundation (6.9 - 1259) <51D1F34F-9FEC-3EF2-8382-2D13D75F845A> /System/Library/Frameworks/CoreFoundation.framework/Versions/A/CoreFoundation
0x7fff85c7a000 - 0x7fff85c7bfff libDiagnosticMessagesClient.dylib (100) <4243B6B4-21E9-355B-9C5A-95A216233B96> /usr/lib/libDiagnosticMessagesClient.dylib
0x7fff85c7c000 - 0x7fff85ccfff7 libc++.1.dylib (120.1) <8FC3D139-8055-3498-9AC5-6467CB7F4D14> /usr/lib/libc++.1.dylib
0x7fff85d23000 - 0x7fff85d35fff libsasl2.2.dylib (209) <11C7D200-0CA5-30F4-A19A-178CA81D48FE> /usr/lib/libsasl2.2.dylib
0x7fff85d3c000 - 0x7fff85d3eff7 com.apple.securityhi (9.0 - 55006) <1E7BE52B-97EA-371A-AECA-1EE2AD246D8A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Versions/A/SecurityHI
0x7fff86192000 - 0x7fff8639dfff libFosl_dynamic.dylib (16.24) <5F9DB82D-FD4B-3952-8531-CE020F93ED49> /usr/lib/libFosl_dynamic.dylib
0x7fff8639e000 - 0x7fff86484fef unorm8_bgra.dylib (2.7.3) /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra.dylib
0x7fff864f6000 - 0x7fff86500fff com.apple.NetAuth (6.0 - 6.0) /System/Library/PrivateFrameworks/NetAuth.framework/Versions/A/NetAuth
0x7fff86501000 - 0x7fff86506fff com.apple.TCC (1.0 - 1) /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
0x7fff8651b000 - 0x7fff8658afff com.apple.SearchKit (1.4.0 - 1.4.0) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framework/Versions/A/SearchKit
0x7fff86602000 - 0x7fff867d0ff3 com.apple.QuartzCore (1.11 - 410.14) <076BDE58-8AED-3D47-84FD-548CF8E8EDB9> /System/Library/Frameworks/QuartzCore.framework/Versions/A/QuartzCore
0x7fff867d1000 - 0x7fff867d4ff7 com.apple.help (1.3.3 - 46) <35DA4D48-0BC2-35A1-8D7C-40905CDF4F64> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions/A/Help
0x7fff867f9000 - 0x7fff86802ff7 com.apple.CommonAuth (4.0 - 2.0) <4B8673E1-3697-3FE2-8D30-AC7AC5D4F8BF> /System/Library/PrivateFrameworks/CommonAuth.framework/Versions/A/CommonAuth
0x7fff869ea000 - 0x7fff869ecfff libsystem_coreservices.dylib (19.2) <1B3F5AFC-FFCD-3ECB-8B9A-5538366FB20D> /usr/lib/system/libsystem_coreservices.dylib
0x7fff86d12000 - 0x7fff86d1afff com.apple.AppleSRP (5.0 - 1) <840A5C20-6452-36BB-ACF7-29BA6CBF7C48> /System/Library/PrivateFrameworks/AppleSRP.framework/Versions/A/AppleSRP
0x7fff86e61000 - 0x7fff86eb2ff7 libcups.2.dylib (435.2) <91584A40-214D-33E8-A613-CE22289037C8> /usr/lib/libcups.2.dylib
0x7fff86f16000 - 0x7fff870dfff7 com.apple.ImageIO.framework (3.3.0 - 1460) /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
0x7fff870e3000 - 0x7fff870e3ff7 libkeymgr.dylib (28) <8371CE54-5FDD-3CE9-B3DF-E98C761B6FE0> /usr/lib/system/libkeymgr.dylib
0x7fff87124000 - 0x7fff87125fff liblangid.dylib (122) <9CC4F0D1-5C51-3B69-BC8F-EE3A51FD0822> /usr/lib/liblangid.dylib
0x7fff87859000 - 0x7fff8794bff7 libiconv.2.dylib (44) /usr/lib/libiconv.2.dylib
0x7fff879dd000 - 0x7fff879e2fff com.apple.ImageCapture (9.0 - 9.0) /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/ImageCapture.framework/Versions/A/ImageCapture
0x7fff87a17000 - 0x7fff87cadfff libmecabra.dylib (696.5) /usr/lib/libmecabra.dylib
0x7fff87cae000 - 0x7fff87cdcff7 com.apple.CoreServicesInternal (248.2 - 248.2) <6E111F0A-D7F1-3738-ADE7-CF983BD4EC8B> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/Versions/A/CoreServicesInternal
0x7fff87ce9000 - 0x7fff87cebff7 libquarantine.dylib (80) <0F4169F0-0C84-3A25-B3AE-E47B3586D908> /usr/lib/system/libquarantine.dylib
0x7fff87cf8000 - 0x7fff87cf8fff libmetal_timestamp.dylib (600.0.44.2) /System/Library/PrivateFrameworks/GPUCompiler.framework/libmetal_timestamp.dylib
0x7fff87cf9000 - 0x7fff87d30ff7 com.apple.LDAPFramework (2.4.28 - 194.5) <9AE33BF2-FB17-342D-8F1E-5F83C6E6EB69> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
0x7fff88ba5000 - 0x7fff88badfff libsystem_networkextension.dylib (385.40.36) <66095DC7-6539-38F2-95EE-458F15F6D014> /usr/lib/system/libsystem_networkextension.dylib
0x7fff88cac000 - 0x7fff890aefff libLAPACK.dylib (1162.2) <42238ED4-6B7A-39D0-BFF2-304A0C287213> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLAPACK.dylib
0x7fff890af000 - 0x7fff8910dfff com.apple.CoreServices.OSServices (728.13 - 728.13) <27C12B92-7845-38DD-B82D-DC5B678352D6> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framework/Versions/A/OSServices
0x7fff8910e000 - 0x7fff891eeff7 unorm8_rgba.dylib (2.7.3) <9EB6C346-CFF6-32D7-B4A1-2409DFBCB216> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_rgba.dylib
0x7fff891ef000 - 0x7fff891f0fff libsystem_secinit.dylib (20) <32B1A8C6-DC84-3F4F-B8CE-9A52B47C3E6B> /usr/lib/system/libsystem_secinit.dylib
0x7fff893e3000 - 0x7fff893f4ff7 libsystem_trace.dylib (201.10.3) /usr/lib/system/libsystem_trace.dylib
0x7fff893f5000 - 0x7fff8941eff7 libxpc.dylib (765.50.8) <54D1328E-054E-3DAA-89E2-375722F9D18F> /usr/lib/system/libxpc.dylib
0x7fff89440000 - 0x7fff89526ff7 libcrypto.0.9.8.dylib (59.60.1) /usr/lib/libcrypto.0.9.8.dylib
0x7fff89834000 - 0x7fff89849ff3 libCGInterfaces.dylib (317.9) <473434E1-5269-3077-A047-D05E024AE631> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/Libraries/libCGInterfaces.dylib
0x7fff89866000 - 0x7fff89868ffb libutil.dylib (43) <4C9BFE8B-563B-3EEA-A323-8F4F14E0A46C> /usr/lib/libutil.dylib
0x7fff89869000 - 0x7fff8986cfff com.apple.IOSurface (108.2.3 - 108.2.3) <52E51D16-42E9-3DDB-A16C-48225EF262C4> /System/Library/Frameworks/IOSurface.framework/Versions/A/IOSurface
0x7fff89d9f000 - 0x7fff89d9ffff com.apple.audio.units.AudioUnit (1.13 - 1.13) <378B5292-F216-32AB-B628-8C33A72D7052> /System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit
0x7fff89dd5000 - 0x7fff89df1ff7 libextension.dylib (78) /usr/lib/libextension.dylib
0x7fff8a1de000 - 0x7fff8a22dff7 com.apple.opencl (2.7.0 - 2.7.0) <39581F1A-04FE-3CCA-9118-E9BB9053F7A1> /System/Library/Frameworks/OpenCL.framework/Versions/A/OpenCL
0x7fff8a22e000 - 0x7fff8a268fff com.apple.QD (3.12 - 302) <0FE53180-2895-3D14-A1E7-F82DE1D106E1> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framework/Versions/A/QD
0x7fff8a269000 - 0x7fff8a271ffb libsystem_dnssd.dylib (625.60.4) <80189998-32B0-316C-B5C5-53857486713D> /usr/lib/system/libsystem_dnssd.dylib
0x7fff8a27e000 - 0x7fff8a286fff com.apple.NetFS (6.0 - 4.0) <842A5346-24C3-3F22-9ECF-E586A10EA1F2> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
0x7fff8a287000 - 0x7fff8a28aff7 libCoreFSCache.dylib (119.5) <2389D7DA-B8EF-3EB4-AAAF-FBEDE01CDECA> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreFSCache.dylib
0x7fff8a2af000 - 0x7fff8a4bcfff libicucore.A.dylib (551.51.4) <3899B146-3840-3D4A-8C4A-FE391D5D25C7> /usr/lib/libicucore.A.dylib
0x7fff8a4bd000 - 0x7fff8a4cbfff libxar.1.dylib (302) <03207F66-2C4A-3DBD-8D81-70F4C85903C4> /usr/lib/libxar.1.dylib
0x7fff8a4d0000 - 0x7fff8a544ff7 com.apple.Heimdal (4.0 - 2.0) <5D365381-8B5E-3259-8867-FC4A7D307BDE> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
0x7fff8a571000 - 0x7fff8a618fff com.apple.LanguageModeling (1.0 - 1) <58C18A47-BDE7-3CBE-81C0-797029D170A1> /System/Library/PrivateFrameworks/LanguageModeling.framework/Versions/A/LanguageModeling
0x7fff8a619000 - 0x7fff8a6aefff com.apple.ink.framework (10.9 - 214) <1F76CF36-3F79-36B8-BC37-C540AF34B338> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/A/Ink
0x7fff8a6af000 - 0x7fff8a7a1ff7 libJP2.dylib (1460) <7FD6231B-EDB9-377F-87F0-ED1C6EDC6F21> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJP2.dylib
0x7fff8a7b6000 - 0x7fff8a7dafff com.apple.MultitouchSupport.framework (304.12 - 304.12) <25FA270C-361D-3732-ABF5-A291240AD6A4> /System/Library/PrivateFrameworks/MultitouchSupport.framework/Versions/A/MultitouchSupport
0x7fff8a933000 - 0x7fff8a9d3fff com.apple.Metadata (10.7.0 - 972.34) /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framework/Versions/A/Metadata
0x7fff8ab8f000 - 0x7fff8ab97fff com.apple.frameworks.CoreDaemon (1.3 - 1.3) /System/Library/PrivateFrameworks/CoreDaemon.framework/Versions/B/CoreDaemon
0x7fff8abb3000 - 0x7fff8abcaff7 libsystem_asl.dylib (323.50.1) <41F8E11F-1BD0-3F1D-BA3A-AA1577ED98A9> /usr/lib/system/libsystem_asl.dylib
0x7fff8abcb000 - 0x7fff8abe4fff com.apple.openscripting (1.7.1 - 169.1) <36EBF6A7-334A-3197-838F-E8C7B27FCDBB> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/OpenScripting.framework/Versions/A/OpenScripting
0x7fff8abe9000 - 0x7fff8abfcfff com.apple.CoreBluetooth (1.0 - 1) /System/Library/Frameworks/CoreBluetooth.framework/Versions/A/CoreBluetooth
0x7fff8abfd000 - 0x7fff8abffff7 com.apple.xpc.ServiceManagement (1.0 - 1) /System/Library/Frameworks/ServiceManagement.framework/Versions/A/ServiceManagement
0x7fff8b2a0000 - 0x7fff8b2a1ff3 com.apple.print.framework.Print (10.0 - 266) <3E85F70C-D7D4-34E1-B88A-C1F503F99CDA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Versions/A/Print
0x7fff8b3bd000 - 0x7fff8b3dbff7 libsystem_kernel.dylib (3248.60.11) /usr/lib/system/libsystem_kernel.dylib
0x7fff8b3dc000 - 0x7fff8b44bfff com.apple.datadetectorscore (7.0 - 460) /System/Library/PrivateFrameworks/DataDetectorsCore.framework/Versions/A/DataDetectorsCore
0x7fff8b44c000 - 0x7fff8b46efff com.apple.IconServices (68.1 - 68.1) /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
0x7fff8b46f000 - 0x7fff8b485ff7 libLinearAlgebra.dylib (1162.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libLinearAlgebra.dylib
0x7fff8b530000 - 0x7fff8b884fff com.apple.Foundation (6.9 - 1259) <71A9D3A0-0B1F-3E3A-86F3-1486365A6EF2> /System/Library/Frameworks/Foundation.framework/Versions/C/Foundation
0x7fff8b8b2000 - 0x7fff8b8ccfff com.apple.Kerberos (3.0 - 1) <1B4744BF-E5AE-38E2-AA56-E22D3270F2E8> /System/Library/Frameworks/Kerberos.framework/Versions/A/Kerberos
0x7fff8b8d0000 - 0x7fff8ba90ffb libBLAS.dylib (1162.2) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libBLAS.dylib
0x7fff8c4ff000 - 0x7fff8c508ff3 libsystem_notify.dylib (150.40.1) /usr/lib/system/libsystem_notify.dylib
0x7fff8c7a7000 - 0x7fff8c7a7fff com.apple.ApplicationServices (48 - 48) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
0x7fff8c80b000 - 0x7fff8c811fff com.apple.IOAccelerator (205.11 - 205.11) /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
0x7fff8c9b7000 - 0x7fff8ca1efff com.apple.framework.CoreWiFi (11.0 - 1101.20) <993592F1-B3F1-3FAD-87BD-EA83C361BCCF> /System/Library/PrivateFrameworks/CoreWiFi.framework/Versions/A/CoreWiFi
0x7fff8ca31000 - 0x7fff8ca58fff com.apple.ChunkingLibrary (167 - 167) /System/Library/PrivateFrameworks/ChunkingLibrary.framework/Versions/A/ChunkingLibrary
0x7fff8cabf000 - 0x7fff8cb48ff7 com.apple.PerformanceAnalysis (1.0 - 1) <9EF745B2-ECD5-33F8-912F-E96771C9E6F8> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAnalysis
0x7fff8cb49000 - 0x7fff8cb4dfff libcache.dylib (75) <9548AAE9-2AB7-3525-9ECE-A2A7C4688447> /usr/lib/system/libcache.dylib
0x7fff8cbaa000 - 0x7fff8cbaefff com.apple.CommonPanels (1.2.6 - 96) <4AE7E5AE-55B3-37FA-9BDE-B23147ADA2E9> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/Versions/A/CommonPanels
0x7fff8cd55000 - 0x7fff8cd6fff3 liblzma.5.dylib (10) /usr/lib/liblzma.5.dylib
0x7fff8ce00000 - 0x7fff8ceb9ff7 libvMisc.dylib (563.5) /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvMisc.dylib
0x7fff8ceba000 - 0x7fff8cefcff7 com.apple.Metal (56.6 - 56.6) <30518711-8D00-3759-AA19-800D3C88E693> /System/Library/Frameworks/Metal.framework/Versions/A/Metal
0x7fff8d2eb000 - 0x7fff8d39bfff com.apple.backup.framework (1.7.4 - 1.7.4) /System/Library/PrivateFrameworks/Backup.framework/Versions/A/Backup
0x7fff8d42c000 - 0x7fff8d478ffb com.apple.HIServices (1.22 - 550) <6B76B41C-CF5A-34C4-89F4-EFD7CA3D1C9D> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/HIServices.framework/Versions/A/HIServices
0x7fff8d479000 - 0x7fff8d4a2fff libsystem_info.dylib (477.50.4) /usr/lib/system/libsystem_info.dylib
0x7fff8d4a3000 - 0x7fff8d4b1fff com.apple.opengl (12.1.0 - 12.1.0) <0718DB60-BA4F-3CF7-A117-10A2515D931F> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
0x7fff8e608000 - 0x7fff8e8edffb com.apple.CoreServices.CarbonCore (1136.2 - 1136.2) <2DBAFC9A-6CD6-351D-B1F4-87D81AA6D640> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/CarbonCore.framework/Versions/A/CarbonCore
0x7fff8e8f5000 - 0x7fff8e906ff7 libz.1.dylib (61.20.1) /usr/lib/libz.1.dylib
0x7fff8e907000 - 0x7fff8e9abfff com.apple.Bluetooth (4.4.6 - 4.4.6f1) <4072EA3E-F2DD-32C1-9B19-9339C7087051> /System/Library/Frameworks/IOBluetooth.framework/Versions/A/IOBluetooth
0x7fff8ea16000 - 0x7fff8ea1efef libsystem_platform.dylib (74.40.2) <29A905EF-6777-3C33-82B0-6C3A88C4BA15> /usr/lib/system/libsystem_platform.dylib
0x7fff8ea1f000 - 0x7fff8ea85ff7 libsystem_network.dylib (583.50.1) /usr/lib/system/libsystem_network.dylib
0x7fff8ea99000 - 0x7fff8eb04ff7 com.apple.framework.CoreWLAN (11.0 - 1101.20) <3B35C543-7FCE-333F-80C1-432FA41DDCDE> /System/Library/Frameworks/CoreWLAN.framework/Versions/A/CoreWLAN
0x7fff8eba0000 - 0x7fff8eba4fff libGIF.dylib (1460) /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libGIF.dylib
0x7fff8eba5000 - 0x7fff8ebbefe7 libcompression.dylib (28) /usr/lib/libcompression.dylib
0x7fff8ebbf000 - 0x7fff8ebc7fff libGFXShared.dylib (12.1) <5A0C2493-200C-30BE-97D5-8E8C0B8E604D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGFXShared.dylib
0x7fff8ebf5000 - 0x7fff8ebfeff7 libsystem_pthread.dylib (138.10.4) <3DD1EF4C-1D1B-3ABF-8CC6-B3B1CEEE9559> /usr/lib/system/libsystem_pthread.dylib
0x7fff8ebff000 - 0x7fff8f0bdfcf com.apple.vImage (8.0 - 8.0) <85FB412E-EB30-3433-A79B-B3970FC83580> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vImage.framework/Versions/A/vImage
0x7fff8f0ce000 - 0x7fff8f1dcff3 com.apple.desktopservices (1.10.3 - 1.10.3) <3A6906D4-C0B8-30D1-B589-0466E5E42B69> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopServicesPriv
0x7fff8f1dd000 - 0x7fff8f1f9ff7 libsystem_malloc.dylib (67.40.1) <5748E8B2-F81C-34C6-8B13-456213127678> /usr/lib/system/libsystem_malloc.dylib
0x7fff8f1fa000 - 0x7fff8f1fcfff com.apple.loginsupport (1.0 - 1) <9B2F5F9B-ED38-313F-B798-D2B667BCD6B5> /System/Library/PrivateFrameworks/login.framework/Versions/A/Frameworks/loginsupport.framework/Versions/A/loginsupport
0x7fff8fbef000 - 0x7fff8fbf7fff libcopyfile.dylib (127) /usr/lib/system/libcopyfile.dylib
0x7fff8fbf8000 - 0x7fff8fc03fff com.apple.CrashReporterSupport (10.11 - 718) <05892B57-F2CD-3C84-B984-0417F6B361DB> /System/Library/PrivateFrameworks/CrashReporterSupport.framework/Versions/A/CrashReporterSupport
0x7fff8fc04000 - 0x7fff8fc21ff7 com.apple.AppleVPAFramework (2.1.2 - 2.1.2) <41378C0B-B56A-3A73-9BD0-E06FA1F87B8C> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
0x7fff8fcca000 - 0x7fff8fd28fff com.apple.SystemConfiguration (1.14 - 1.14) /System/Library/Frameworks/SystemConfiguration.framework/Versions/A/SystemConfiguration
0x7fff8fe73000 - 0x7fff8fe76fff libCoreVMClient.dylib (119.5) <560D70FB-709F-3030-96C9-F249FCB7DA6D> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
0x7fff8ff35000 - 0x7fff8ff7bff7 libauto.dylib (186) <999E610F-41FC-32A3-ADCA-5EC049B65DFB> /usr/lib/libauto.dylib
0x7fff90334000 - 0x7fff90350ff3 libresolv.9.dylib (60) /usr/lib/libresolv.9.dylib
0x7fff90355000 - 0x7fff903e2fef libsystem_c.dylib (1082.60.1) <28733D22-553E-3CBC-8D2C-EDCEB46E46AF> /usr/lib/system/libsystem_c.dylib
0x7fff9061f000 - 0x7fff9063aff7 libCRFSuite.dylib (34) <078B4CD8-6A8C-3067-B2BA-0C2A0BAB8AC3> /usr/lib/libCRFSuite.dylib
0x7fff906a5000 - 0x7fff906aefff com.apple.icloud.FindMyDevice (1.0 - 1) /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
0x7fff9141c000 - 0x7fff91461ff3 libFontRegistry.dylib (155.2) /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontRegistry.dylib
0x7fff91462000 - 0x7fff91479ff7 libsystem_coretls.dylib (83.40.5) /usr/lib/system/libsystem_coretls.dylib
0x7fff91526000 - 0x7fff91638fef libvDSP.dylib (563.5) <5702650E-DF08-3D58-B16F-9EF0A28702B3> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libvDSP.dylib
0x7fff91639000 - 0x7fff91639fff com.apple.Carbon (154 - 157) <8F6ED602-5943-3E29-A793-BC331E2C183D> /System/Library/Frameworks/Carbon.framework/Versions/A/Carbon
0x7fff9163a000 - 0x7fff9168aff7 com.apple.Symbolication (1.4 - 58044) /System/Library/PrivateFrameworks/Symbolication.framework/Versions/A/Symbolication
0x7fff91888000 - 0x7fff918c2ff7 com.apple.DebugSymbols (132 - 132) <23A42C53-B941-3871-9EE2-4C87A46005B5> /System/Library/PrivateFrameworks/DebugSymbols.framework/Versions/A/DebugSymbols
0x7fff91cfd000 - 0x7fff91fa3ff7 com.apple.CoreData (120 - 641.3) /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
0x7fff92253000 - 0x7fff9225eff7 libChineseTokenizer.dylib (16) <79B8C67A-3061-3C78-92CD-4650719E68D4> /usr/lib/libChineseTokenizer.dylib
0x7fff9225f000 - 0x7fff922adfff libcurl.4.dylib (90) <12E01E4B-24C9-394C-9D2C-85CF85D5F459> /usr/lib/libcurl.4.dylib
0x7fff9246c000 - 0x7fff92485fff com.apple.CFOpenDirectory (10.11 - 194) <11F95672-55E0-3F9D-9171-5E8C56AEE948> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/Frameworks/CFOpenDirectory.framework/Versions/A/CFOpenDirectory
0x7fff9262e000 - 0x7fff92653ff7 libPng.dylib (1460) <2A9174D0-445A-3AD9-8141-D602E9A1D735> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libPng.dylib
0x7fff926a9000 - 0x7fff926d2ffb libRIP.A.dylib (960.3) <702967FB-D16C-38C7-A3CC-0EC336740A69> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
0x7fff926d3000 - 0x7fff926d3fff com.apple.Cocoa (6.11 - 22) <807787AB-D231-3F51-A99B-A9314623C571> /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa
0x7fff926d4000 - 0x7fff92801ff3 com.apple.CoreText (352.0 - 494.12) /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
0x7fff938e2000 - 0x7fff938e8ff7 com.apple.speech.recognition.framework (5.1.1 - 5.1.1) <9E5A980A-F455-32D5-BBEE-3BD6018CC45E> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SpeechRecognition.framework/Versions/A/SpeechRecognition
0x7fff938fa000 - 0x7fff939e9ff7 libxml2.2.dylib (29.11) /usr/lib/libxml2.2.dylib
0x7fff939ea000 - 0x7fff93cdffff com.apple.HIToolbox (2.1.1 - 807.2) <36413C45-36AF-34EF-9C0E-F18B31D1E565> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/HIToolbox.framework/Versions/A/HIToolbox
0x7fff93cf9000 - 0x7fff93d6dff3 com.apple.securityfoundation (6.0 - 55126) /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
0x7fff93d6e000 - 0x7fff93dbcff7 libstdc++.6.dylib (104.1) <76E2AFB1-07E5-3F19-B692-F6E21B7E470D> /usr/lib/libstdc++.6.dylib
0x7fff93f88000 - 0x7fff943b6fff com.apple.vision.FaceCore (3.3.1 - 3.3.1) /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
0x7fff943b7000 - 0x7fff945d8ff7 com.apple.CoreImage (11.4.0 - 366.4.20) <7721BA55-A10E-3425-8392-C5D7C510EAAB> /System/Library/Frameworks/CoreImage.framework/Versions/A/CoreImage
0x7fff945f6000 - 0x7fff945fefff com.apple.CoreServices.FSEvents (1223.10.1 - 1223.10.1) <7F5B7A23-BC1D-3FA9-A9B8-D534F1E1979A> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/FSEvents.framework/Versions/A/FSEvents
0x7fff9460f000 - 0x7fff946a5fff com.apple.ColorSync (4.9.0 - 4.9.0) <8FC37E20-6579-3CB2-9D49-BC39FC38DF87> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync.framework/Versions/A/ColorSync
0x7fff9471e000 - 0x7fff9472aff7 com.apple.OpenDirectory (10.11 - 194) <31A67AD5-5CC2-350A-96D7-821DF4BC4196> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
0x7fff94a4c000 - 0x7fff94a4cfff com.apple.Accelerate (1.10 - Accelerate 1.10) <5831771A-C1C3-3625-9FE9-2CCB6B2E7EE1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
0x7fff94daa000 - 0x7fff94dd9ff7 com.apple.DictionaryServices (1.2 - 250.3) <30250542-CBAA-39C1-91AA-B57A5DE17594> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/DictionaryServices.framework/Versions/A/DictionaryServices
0x7fff95038000 - 0x7fff95062ff7 libc++abi.dylib (307.2) <922EFB36-0E9E-315B-8270-E81AC43472C0> /usr/lib/libc++abi.dylib
0x7fff95063000 - 0x7fff95065fff com.apple.EFILogin (2.0 - 2) <38150198-DD7F-3C73-BCAA-C74BB376393A> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
0x7fff951ba000 - 0x7fff951cbfff libcmph.dylib (6) /usr/lib/libcmph.dylib
0x7fff952ce000 - 0x7fff9530fff7 libGLU.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
0x7fff958ab000 - 0x7fff958bbfff libbsm.0.dylib (34) <7E14504C-A8B0-3574-B6EB-5D5FABC72926> /usr/lib/libbsm.0.dylib
0x7fff958bc000 - 0x7fff958c1fff com.apple.DiskArbitration (2.7 - 2.7) /System/Library/Frameworks/DiskArbitration.framework/Versions/A/DiskArbitration
0x7fff95d8f000 - 0x7fff95d93fff libpam.2.dylib (20) /usr/lib/libpam.2.dylib
0x7fff95dc4000 - 0x7fff95dc7ffb libdyld.dylib (360.22) <25D28225-99AE-3A04-B98C-ACFF47D6D9B0> /usr/lib/system/libdyld.dylib
0x7fff95dd1000 - 0x7fff95e04ff7 com.apple.MediaKit (16 - 809) /System/Library/PrivateFrameworks/MediaKit.framework/Versions/A/MediaKit
0x7fff95e05000 - 0x7fff95e0cff7 libcompiler_rt.dylib (62) /usr/lib/system/libcompiler_rt.dylib
0x7fff960a9000 - 0x7fff96131fff com.apple.CoreSymbolication (3.1 - 58048.1) <4730422E-4178-34F9-8550-BB92F2A4F44B> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolication
0x7fff96132000 - 0x7fff96134ff7 libsystem_configuration.dylib (802.40.13) <3DEB7DF9-6804-37E1-BC83-0166882FF0FF> /usr/lib/system/libsystem_configuration.dylib
0x7fff96135000 - 0x7fff961a3ff7 com.apple.ApplicationServices.ATS (377 - 394.4) <9779E916-0788-3CAC-B1EC-F68BCB12A2B6> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/ATS
0x7fff961af000 - 0x7fff961d8ff7 libxslt.1.dylib (14.4) <72CD1CA4-1FBD-3672-ADCE-A89AB741689A> /usr/lib/libxslt.1.dylib
0x7fff961d9000 - 0x7fff962d5ff7 libFontParser.dylib (158.6) <267A9AE4-4138-3112-8D73-BDFDC96568FF> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framework/Versions/A/Resources/libFontParser.dylib
0x7fff96329000 - 0x7fff964a7fff com.apple.UIFoundation (1.0 - 436.1) /System/Library/PrivateFrameworks/UIFoundation.framework/Versions/A/UIFoundation
0x7fff964a8000 - 0x7fff964e6ff7 libGLImage.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLImage.dylib
0x7fff964e7000 - 0x7fff964e7fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <848125D3-AF14-3526-8745-FFCDB200CD76> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/vecLib
0x7fff964e8000 - 0x7fff96539fff com.apple.audio.CoreAudio (4.3.0 - 4.3.0) /System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio
0x7fff9653a000 - 0x7fff9653fff3 libunwind.dylib (35.3) /usr/lib/system/libunwind.dylib
0x7fff96580000 - 0x7fff96580ff7 libunc.dylib (29) /usr/lib/system/libunc.dylib
0x7fff96581000 - 0x7fff965acffb libarchive.2.dylib (33.20.2) <6C370A21-63FD-3A68-B4B3-5333F24B770B> /usr/lib/libarchive.2.dylib
0x7fff96736000 - 0x7fff9673bff7 libmacho.dylib (875.1) <318264FA-58F1-39D8-8285-1F6254EE410E> /usr/lib/system/libmacho.dylib
0x7fff9673e000 - 0x7fff967b5feb libcorecrypto.dylib (335.50.1) /usr/lib/system/libcorecrypto.dylib
0x7fff967b7000 - 0x7fff97a1dff3 com.apple.CoreGraphics (1.600.0 - 960.3) /System/Library/Frameworks/CoreGraphics.framework/Versions/A/CoreGraphics
0x7fff97a1e000 - 0x7fff97af4ffb com.apple.DiskImagesFramework (10.11.4 - 417.4) /System/Library/PrivateFrameworks/DiskImages.framework/Versions/A/DiskImages
0x7fff97af5000 - 0x7fff97afaff7 libheimdal-asn1.dylib (453.40.10) <981DE40B-FA16-36F7-BE92-8C8A115D6CD9> /usr/lib/libheimdal-asn1.dylib
0x7fff97b1f000 - 0x7fff97db9ff3 com.apple.security (7.0 - 57337.60.2) /System/Library/Frameworks/Security.framework/Versions/A/Security
0x7fff97e05000 - 0x7fff97e11fff com.apple.speech.synthesis.framework (5.4.12 - 5.4.12) <71DA00B8-5EA2-326B-8814-59DB25512F65> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/SpeechSynthesis.framework/Versions/A/SpeechSynthesis
0x7fff97e12000 - 0x7fff97e31ff7 com.apple.framework.Apple80211 (11.0 - 1121.34.2) <90477FAE-B835-3931-80FB-FDFF02B21D9D> /System/Library/PrivateFrameworks/Apple80211.framework/Versions/A/Apple80211
0x7fff97e32000 - 0x7fff97e34fff libCVMSPluginSupport.dylib (12.1) /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCVMSPluginSupport.dylib
0x7fff97e4f000 - 0x7fff97edeff7 libCoreStorage.dylib (517.50.1) /usr/lib/libCoreStorage.dylib
0x7fff97f80000 - 0x7fff97fc5ff7 com.apple.coreservices.SharedFileList (24.4 - 24.5) <1D2AD77B-778F-3253-A295-3D0A32A8121C> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SharedFileList.framework/Versions/A/SharedFileList
0x7fff97fe9000 - 0x7fff97ff5fff com.apple.SpeechRecognitionCore (2.2.7 - 2.2.7) <6BA06290-D4A3-351C-87F9-B61EF61FF055> /System/Library/PrivateFrameworks/SpeechRecognitionCore.framework/Versions/A/SpeechRecognitionCore
0x7fff97ffa000 - 0x7fff98c23ff7 com.apple.AppKit (6.9 - 1404.47) /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
0x7fff98c24000 - 0x7fff98c24ff7 liblaunch.dylib (765.50.8) <834ED605-5114-3641-AA4D-ECF31B801C50> /usr/lib/system/liblaunch.dylib
0x7fff98c28000 - 0x7fff98c60ff7 com.apple.RemoteViewServices (2.0 - 101) /System/Library/PrivateFrameworks/RemoteViewServices.framework/Versions/A/RemoteViewServices
0x7fff98cfb000 - 0x7fff98d1dff7 com.apple.Sharing (442.13.6 - 442.13.6) /System/Library/PrivateFrameworks/Sharing.framework/Versions/A/Sharing
0x7fff98d1e000 - 0x7fff98e3bfff libsqlite3.dylib (216.4) /usr/lib/libsqlite3.dylib
0x7fff98e3f000 - 0x7fff98e4dff7 libbz2.1.0.dylib (38) <28E54258-C0FE-38D4-AB76-1734CACCB344> /usr/lib/libbz2.1.0.dylib
0x7fff98f63000 - 0x7fff98f6bfef libcldcpuengine.dylib (2.7.3) <385BE8CE-16D8-3FCB-8558-8EB744D3DFE6> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/libcldcpuengine.dylib
0x7fff98f6c000 - 0x7fff98f83fff libmarisa.dylib (4) /usr/lib/libmarisa.dylib
0x7fff98f84000 - 0x7fff9903efff com.apple.DiscRecording (9.0.1 - 9010.4.3) <540853B2-B123-3560-8023-C92EE229051A> /System/Library/Frameworks/DiscRecording.framework/Versions/A/DiscRecording
0x7fff9903f000 - 0x7fff99042ffb libScreenReader.dylib (426.42) <16FC79D1-4573-3E90-945F-CBA22D5185FD> /usr/lib/libScreenReader.dylib
0x7fff991fc000 - 0x7fff99225fff com.apple.ProtectedCloudStorage (1.0 - 1) <7436B2B3-943A-3500-B099-80F133B3E002> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedCloudStorage
0x7fff99226000 - 0x7fff99281ff7 libTIFF.dylib (1460) <37D499DA-A4A6-3CC8-8F60-F374F992C304> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libTIFF.dylib
0x7fff998ae000 - 0x7fff998ddffb libsystem_m.dylib (3105) <08E1A4B2-6448-3DFE-A58C-ACC7335BE7E4> /usr/lib/system/libsystem_m.dylib
0x7fff998de000 - 0x7fff99c49657 libobjc.A.dylib (680) /usr/lib/libobjc.A.dylib
0x7fff9a096000 - 0x7fff9a0a5ffb com.apple.LangAnalysis (1.7.0 - 1.7.0) <18D21123-A3E7-3851-974A-08E5D4540475> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/LangAnalysis.framework/Versions/A/LangAnalysis
0x7fff9a103000 - 0x7fff9a113fff libSparseBLAS.dylib (1162.2) <6F591A0F-80D0-384D-8304-B035C4ED1BBD> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Versions/A/libSparseBLAS.dylib
0x7fff9a11a000 - 0x7fff9a18ffff com.apple.framework.IOKit (2.0.2 - 1179.50.2) /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x7fff9a190000 - 0x7fff9a193fff libsystem_sandbox.dylib (460.60.2) <2A68B39C-B786-3A05-87A2-56E688469FB8> /usr/lib/system/libsystem_sandbox.dylib
0x7fff9a194000 - 0x7fff9a195fff com.apple.TrustEvaluationAgent (2.0 - 25) <0239494E-FEFE-39BC-9FC7-E251BA5128F1> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluationAgent
0x7fff9a245000 - 0x7fff9a250fff libGL.dylib (12.1) <70D51643-04AC-3400-8F11-A6FC25985289> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGL.dylib
0x7fff9a251000 - 0x7fff9a4d8fff com.apple.CFNetwork (760.6.3 - 760.6.3) <8CB9CB2E-D0FB-31D4-A1AE-2A5FE028AD6B> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
0x7fff9a4fc000 - 0x7fff9a4fcfff libenergytrace.dylib (10.40.1) <0A491CA7-3451-3FD5-999A-58AB4362682B> /usr/lib/libenergytrace.dylib
0x7fff9a502000 - 0x7fff9a50dff7 libcommonCrypto.dylib (60075.50.1) <93732261-34B4-3914-B7A2-90A81A182DBA> /usr/lib/system/libcommonCrypto.dylib
0x7fff9a58a000 - 0x7fff9a6d4ff7 com.apple.coreui (2.1 - 366.1) <8138636F-A0A7-31C7-896C-5F5747FA1B2A> /System/Library/PrivateFrameworks/CoreUI.framework/Versions/A/CoreUI
0x7fff9a8e1000 - 0x7fff9a96edd7 com.apple.AppleJPEG (1.0 - 1) /System/Library/PrivateFrameworks/AppleJPEG.framework/Versions/A/AppleJPEG
0x7fff9a96f000 - 0x7fff9a970ffb libSystem.B.dylib (1226.10.1) <012548CD-614D-3AF0-B3B1-676F427D2CD6> /usr/lib/libSystem.B.dylib
0x7fff9a971000 - 0x7fff9a971fff com.apple.CoreServices (728.13 - 728.13) /System/Library/Frameworks/CoreServices.framework/Versions/A/CoreServices
0x7fff9a9a4000 - 0x7fff9a9c8ff7 libJPEG.dylib (1460) <82AF76D7-B3E6-39AA-947E-C34A280FD1CF> /System/Library/Frameworks/ImageIO.framework/Versions/A/Resources/libJPEG.dylib
0x7fff9aa44000 - 0x7fff9aa4ffff libcsfde.dylib (517.50.1) <52F0DB6A-13B8-355E-ADFD-72834D3CA183> /usr/lib/libcsfde.dylib

External Modification Summary:
Calls made by other processes targeting this process:
task_for_pid: 1625
thread_create: 0
thread_set_state: 0
Calls made by this process:
task_for_pid: 0
thread_create: 0
thread_set_state: 0
Calls made by all processes on this machine:
task_for_pid: 389468
thread_create: 0
thread_set_state: 0

VM Region Summary:
ReadOnly portion of Libraries: Total=243.8M resident=0K(0%) swapped_out_or_unallocated=243.8M(100%)
Writable regions: Total=1.0G written=0K(0%) resident=0K(0%) swapped_out=0K(0%) unallocated=1.0G(100%)

                            VIRTUAL   REGION 

REGION TYPE SIZE COUNT (non-coalesced)
=========== ======= =======
Accelerate.framework 128K 2
Activity Tracing 2048K 2
CG backing stores 8044K 5
CG image 52K 5
CG shared images 368K 10
CoreAnimation 28K 5
CoreUI image data 1012K 6
CoreUI image file 192K 4
Dispatch continuations 16.0M 2
Kernel Alloc Once 8K 3
MALLOC 970.3M 177
MALLOC guard page 32K 7
Memory Tag 242 12K 2
OpenCL 8K 2
Process Corpse Info 2048K 2
STACK GUARD 56.1M 19
Stack 16.2M 22
VM_ALLOCATE 116K 8
__DATA 18.7M 204
__IMAGE 528K 2
__LINKEDIT 91.9M 6
__TEXT 151.9M 212
__UNICODE 552K 2
mapped file 239.7M 50
shared memory 16.3M 9
=========== ======= =======
TOTAL 1.6G 743

Model: MacPro4,1, BootROM MP41.0081.B07, 4 processors, Quad-Core Intel Xeon, 2.66 GHz, 8 GB, SMC 1.39f5
Graphics: NVIDIA GeForce GT 120, NVIDIA GeForce GT 120, PCIe, 512 MB
Memory Module: DIMM 1, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
Memory Module: DIMM 2, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
Memory Module: DIMM 3, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
Memory Module: DIMM 4, 2 GB, DDR3 ECC, 1066 MHz, 0x80AD, 0x484D54313235553741465238432D47372020
Bluetooth: Version 4.4.6f1 17910, 3 services, 19 devices, 1 incoming serial ports
Network Service: Ethernet 1, Ethernet, en0
PCI Card: NVIDIA GeForce GT 120, Display Controller, Slot-1
Serial ATA Device: HL-DT-ST DVD-RW GH41N
Serial ATA Device: WDC WD6400AAKS-41H2B0, 640.14 GB
Serial ATA Device: WDC WD6400AAKS-41H2B0, 640.14 GB
USB Device: USB Bus
USB Device: USB Bus
USB Device: BRCM2046 Hub
USB Device: Bluetooth USB Host Controller
USB Device: USB Bus
USB Device: USB Laser Mouse
USB Device: USB Bus
USB Device: USB Bus
USB Device: USB Bus
USB Device: USB 2.0 Bus
USB Device: My Passport 0837
USB Device: USB 2.0 Bus
USB Device: USB Reader
USB Device: BUP Slim BK
USB Device: Keyboard Hub
USB Device: Apple Keyboard
FireWire Device: My Book 1112, WD, Up to 800 Mb/sec
FireWire Device: built-in_hub, Up to 800 Mb/sec
Thunderbolt Bus:

END ERROR MESSAGE

Full Node crashed overnight

Regularly running a full node on and off. This most recent session had been on for a couple days. Woke up to this crash.

NOTE: My device still calls this Bitcoin-Qt because I had that install a long time ago, but this is BU. I'm not sure why my device labels it as such under the hood.

OSX El Cap 10.11.6 on an early 2009 Mac Pro.
2.66 GHz Quad-Core Intel Xeon
8 GB 1066 MHz DDR3 ECC
VIDIA GeForce GT 120 512 MB

BU_crash.pdf

Node crashed with segfault in bitcoin-httpworker

Hello,

I switched one of my nodes from Classic to BitcoinUnlimited about a week ago, and today it crashed
with this in dmesg:

[2474116.108519] bitcoin-httpwor[28515]: segfault at 30 ip 00007fc49ff3c452 sp 00007fc49c48c628 error 4 in
libstdc++.so.6.0.21[7fc49fe99000+16b000]

The only thing which is maybe uncommon about this server, is it only has intel atom cpu with 2GB of ram and it sets this when bitcoind starts:
export MALLOC_ARENA_MAX=1

As I've read this may help when low on ram, but that was the same with Classic have not changed anything.

And there is a python script which scrapes rpc info into collectd every 30 seconds (I guess this may call the http worker...), but the same script was running with Classic for some months without any problem.

BitcoinUnlimited was built from source, with the bu0.12.1c release. Distro is Slackware64-14.2.

there was nothing in debug.log, last entry is just a timestamp without log message:

2016-09-22 14:07:40 connect() to 91.234.48.232:8333 failed after select(): Connection refused (111)
2016-09-22 14:08:07 connect() to 91.234.48.232:8333 failed after select(): Connection refused (111)
2016-09-22 14:08:20

Let me know if I can provide any other info.

Change/Remove alert keys/system

Your project contains the old centralized "alert" system previously copied from upstream Bitcoin. This system lets the holders of a private key send messages to be displayed in the error field. Because of its limited utility, potential for abuse, known disclosure of the key to at least one untrustworthy party (and is believed to be compromised), and frequent use to justify other centralizing features this system has long been deactivated (and now is completely removed) upstream.

I would recommend you remove this system by adopting this code from upstream: bitcoin/bitcoin#7692 or the parallel PR in bitcoin xt, bitcoinxt/bitcoinxt#150

Can you please let me know when you plan to release a version replaces the key or removes the system entirely? Thanks.

getnetworkinfo: networks: reachable: all false, old bug from core

See Core PR: bitcoin/bitcoin#7553

Effect is this, even though some networks are definitely reachable:

  "networks": [
    {
      "name": "ipv4",
      "limited": false,
      "reachable": false,
      "proxy": "",
      "proxy_randomize_credentials": false
    }, 
    {
      "name": "ipv6",
      "limited": false,
      "reachable": false,
      "proxy": "",
      "proxy_randomize_credentials": false
    }, 
    {
      "name": "onion",
      "limited": false,
      "reachable": false,
      "proxy": "",
      "proxy_randomize_credentials": false
    }

Failure to compile XpeditedBlocks

I've been trying to compile the XpeditedBlocks code but kept getting this following error output:

Making all in src

make[1]: Entering directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
make[2]: Entering directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
make[2]: Leaving directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
make[1]: Leaving directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
make[1]: Entering directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks'
make[1]: Nothing to be done for 'all-am'.
make[1]: Leaving directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks'

So I ran a make check and got the following error output:

Making check in src
make[1]: Entering directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
make[2]: Entering directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
make check-TESTS check-local
make[3]: Entering directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
make[4]: Entering directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
../build-aux/test-driver: line 107: 2335 Aborted (core dumped) "$@" > $log_file 2>&1

FAIL: test/test_bitcoin
Testsuite summary for Bitcoin Unlimited 0.12.0
TOTAL: 1
PASS: 0
SKIP: 0
XFAIL: 0
FAIL: 1
XPASS: 0
ERROR: 0
See src/test-suite.log
Please report to https://github.com/BitcoinUnlimited/BitcoinUnlimited/issues

Makefile:7216: recipe for target 'test-suite.log' failed
make[4]: *** [test-suite.log] Error 1
make[4]: Leaving directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
Makefile:7322: recipe for target 'check-TESTS' failed
make[3]: *** [check-TESTS] Error 2
make[3]: Leaving directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
Makefile:7428: recipe for target 'check-am' failed
make[2]: *** [check-am] Error 2
make[2]: Leaving directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
Makefile:7109: recipe for target 'check-recursive' failed
make[1]: *** [check-recursive] Error 1
make[1]: Leaving directory '/home/bitsrc/BitcoinUnlimited-XpeditedBlocks/src'
Makefile:651: recipe for target 'check-recursive' failed
make: *** [check-recursive] Error 1

  1. With regard to the first error, i.e make[1]: Nothing to be done for 'all-am'., what is the fix?
  2. Is there a way to omit compiling the tests to avoid the latter error?

bitcoin executables segmentation fault upon termination

I've noticed this problem with BU 0.12.1bu (built from current branch) on my Debian 7 x86_64 test platform so far.

When I close bitcoin-qt by clicking on the 'X' window decorator, the application shuts down, but sometimes hits a 'Segmentation Fault' in various ways. This does not happen always (maybe 20-30% of the time? - I havent measured accurately).

I've also noticed a similar problem when the bitcoind executable is terminated, e.g. for a regtest is stopped.
Sometimes this segfaulting manifests in backtraces from glibc.

I have yet to try on other platforms (more recent Debian / Ubuntu etc).

@ptschip reported seeing similar crashes when running the wallet.py script.

my bitcoind node hang up and I have to kill it

  • bitcoind unlimited 0.12.1
  • ubuntu 14.04 LTS

Here is the debug logs, it looks like dead lock issue.

2016-08-03 23:57:01 Acceptable block: ver:20000000 time:1470268605 size: 998199 Tx:2254 Sig:3831
2016-08-03 23:57:01 UpdateTip: new best=000000000000000004cbef0311e0f5efe337c1e0957a0669eb8f71276c74234b  height=423560  log2_work=85.081141  tx=146830197  date=2016-08-03 23:56:45 progress=1.000000  cache=137.8MiB(69846tx)
2016-08-03 23:58:33 Node 82.130.103.245:37298 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:00:25 Node 46.101.246.115:37646 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:00:26 Node 82.130.103.245:37460 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:01:21 Node 24.114.102.46:52915 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:01:24 Node 106.185.29.220:43678 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:02:22 Node 24.114.102.46:37583 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:12:06 socket send error 'Connection reset by peer (104)' to 190.247.209.49:64902 (12526)
2016-08-04 00:13:25 Node 106.185.29.220:45502 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:20:10 socket send error 'Connection reset by peer (104)' to 41.182.204.196:61147 (12400)
2016-08-04 00:20:12 Acceptable block: ver:20000000 time:1470269975 size: 998232 Tx:2565 Sig:3998
2016-08-04 00:20:13 UpdateTip: new best=00000000000000000464b83b2fbde49a9cfd910f9520986fecf876ed71c5b934  height=423561  log2_work=85.081171  tx=146832762  date=2016-08-04 00:19:35 progress=1.000000  cache=141.4MiB(74129tx)
2016-08-04 00:20:45 Acceptable block: ver:20000000 time:1470270029 size: 998219 Tx:516 Sig:3264
2016-08-04 00:20:45 Pre-allocating up to position 0x6000000 in blk00588.dat
2016-08-04 00:20:47 UpdateTip: new best=000000000000000000cb6f0ed5e09a91381235f03b73091b1447d257d8f5cb64  height=423562  log2_work=85.081202  tx=146833278  date=2016-08-04 00:20:29 progress=1.000000  cache=146.6MiB(76272tx)
2016-08-04 00:20:53 Acceptable block: ver:20000000 time:1470270044 size: 13804 Tx:49 Sig:79
2016-08-04 00:20:53 UpdateTip: new best=0000000000000000044160b65a162edb4f3488e7afd588147086df49fe6ad134  height=423563  log2_work=85.081232  tx=146833327  date=2016-08-04 00:20:44 progress=1.000000  cache=146.6MiB(76314tx)
2016-08-04 00:26:05 Acceptable block: ver:20000000 time:1470270323 size: 997171 Tx:664 Sig:1090
2016-08-04 00:26:07 Pre-allocating up to position 0xb00000 in rev00588.dat
2016-08-04 00:26:07 UpdateTip: new best=0000000000000000011b977e80b2d0ba36980e9f6caf3f3fc867ebf74f9da255  height=423564  log2_work=85.081263  tx=146833991  date=2016-08-04 00:25:23 progress=1.000000  cache=149.9MiB(79903tx)
2016-08-04 00:35:00 Node 52.58.239.112:33490 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:37:21 Acceptable block: ver:20000000 time:1470271017 size: 988659 Tx:1529 Sig:7283
2016-08-04 00:37:21 UpdateTip: new best=0000000000000000006b98dead3d1ea95c6f4d54c20799a6d13a809743bad069  height=423565  log2_work=85.081294  tx=146835520  date=2016-08-04 00:36:57 progress=1.000000  cache=152.0MiB(82005tx)
2016-08-04 00:41:35 Node 98.211.233.23:59903 socket recv error 'Connection reset by peer (104)'
2016-08-04 00:56:18 Acceptable block: ver:20000000 time:1470272163 size: 998113 Tx:2135 Sig:3313
2016-08-04 00:56:18 UpdateTip: new best=000000000000000003b3fead81c7096261752b81358a1c06af3b42d9c682144a  height=423566  log2_work=85.081324  tx=146837655  date=2016-08-04 00:56:03 progress=1.000000  cache=153.3MiB(85589tx)
2016-08-04 07:49:05 tor: Thread interrupt
2016-08-04 07:49:05 torcontrol thread exit
2016-08-04 07:49:05 opencon thread interrupt
2016-08-04 07:49:05 addcon thread interrupt
2016-08-04 07:49:05 scheduler thread interrupt

Possible -addnode bug

I haven't investigated deep enough into the code to really determine if this is an actual bug in the way I suspect, but I as I was going through the code as part of my own personal exploration, I wanted to point this out. Perhaps someone more familiar with the code can quickly verify if this is actually an issue or not. If it is, it's a "one-line fix"โ„ข.

After a few hours looking into this area of the code, my initial assumptions are the following:

  1. Command line arguments plus anything in the bitcoin.conf file only apply to the system once per execution, during startup. The bitcoin.conf file is not monitored for changes during execution (though this could be quite useful, at least for some key parameters/during testing -- RPC reread-config command FTW).
  2. RPC allows manual addition and removal of outbound nodes, but this does not affect the contents of the mapMultiArgs list for the "-addnode" option. Not sure about this one, haven't looked into the RPC module much yet.

In net.cpp, function AcceptConnection(...), the computation for nMaxInbound seems semantically incorrect. (NOTE: All comments in below code block are mine. Only the single line of code is from the original source-code.)

    //REVISIT: We are taking the max number of total allowable connections (inbound + outbound),
    //         then subtracting the maximum number of "concurrently allowable" outbound connections (hard coded at 8),
    //         then subtracting the number of "-addnode" parameters (user configured w/o limit checks against spec'd maximum number of outbounds)
    //NOTE: A cursory look through the code doesn't show the number of "-addnode" arguments being decreased.
    //      Given these observations, we could end up in some erroneous cases based on order of operations
    //      and the number of "-addnode" paramters that the user configured via command line/bitcoin.conf.
    //CASE 1:  (BAD, UNLIKELY) I list out an arbitrarily large number of "-addnode" parameters in my bitcoin.conf file 
    //         i.e. every node currently reachable by bitnoes.21.co ~5-6k.  In this case, unless we specify really high -maxconnections
    //         we end up with a negative nMaxInbound value, preventing all inbound connections. (I have not tested this)
    //CASE 2:  (MOST LIKELY) I list a reasonable (though greater than the recommended 8) number of "-addnode" arguments.  The current implementation,
    //         assuming mapMultiArgs doesn't get dynamically updated, will both allow more than the hardcoded default of 8 outbound connections
    //         AND reduce the total number of possible inbound connections.
    //FIX: If my assumptions are correct, this value should actually be:
    //     nMaxInbound = nMaxConnections - MAX_OUTBOUND_CONNECTION (could leave up to 8 connection slots empty if no outbounds connect,
    //                                                              though this seems unlikely with the various seeding methods)
    int nMaxInbound = nMaxConnections - MAX_OUTBOUND_CONNECTIONS - mapMultiArgs["-addnode"].size();

In practice, I have run into the issue where I was able to get more than 8 outbounds to connect (it's a feature, not a bug, honest!). I have also never been able to saturate my -maxconnections, though I'm running on a recently retired gaming rig over a FIOS fiber connection that's basically 4 hops from the Ashburn MCI trunk line, so I always set it pretty high, making the issue less noticeable. I have a feeling though that some of the "How can I increase the number of connections to my node" posts I've seen where users don't come close to reaching the number of nodes they set as their max, but have gotten past the "your router needs to port-forward" issue have posted about.

Bitcoin-qt throws error when exiting

Using the latest ppa release on Ubuntu 16.10 x64, I receive a "closed unexpectedly" error every time I exit the program. I send reports every time, but I don't know if that helps you or not.

Missing protocol documentation for xthin

The Classic team has been trying to implement xthin for some time now and has for about 2 months stalled due to lack of xthin protocol documentation.

To interoperate between clients we need actual documentation of the messages, their contents and enum values of invs etc etc etc.

I would really like to release Classic with support for xthin (the code has been there for some time). But without being able to review if I'm doing it correctly, its not really something I can release.

Keeping protocol changes in sync by copying each other's code is not an option ;)

In the mean time compact blocks has been released, it looks like xthin has missed its window of opportunity.

Sorry if this sounds rather negative, but most people on the project know I've been asking for months for this.

Update copyright notices for 2017.

The title says it all.

EDIT: b471620 which is currently only on release updates the splash and about screens, but it needs to be merged to dev and there are other places that still need to be updated. The properties for the windows builds still show 2016 on the downloadable exe (also when built natively on Windows).

Wrong name in Windows notification area

In the windows notification area (Windows 7) there is an icon when BU is running. Mousing on this icon shows the name "Bitcoin Core client". (The larger Icon shown when a BU window is open is correctly labeled.) FYI. If this is a known problem with branding, I apologize for raising the issue.

Upnp mapping in DHCP

Upnp mapping is not being checked on resume of network activity. This happens after getting disconnected at my home network and the dhcp server leased a new local IP. Upon checking the nat entries in my firewall, the mapping is still the old issued IP. I have to re-toggle upnp setting in the BU client. I permanently fixed this when I reserved the IP of my laptop.

Issue compiling on FreeBSD 10

Gmake fails with the following error.

CXX leveldb/db/leveldb_libleveldb_a-builder.o
:0:13: warning: ISO C99 requires whitespace after the macro name
In file included from ./leveldb/port/port.h:14:0,
from ./leveldb/db/filename.h:14,
from leveldb/db/builder.cc:7:
./leveldb/port/port_posix.h:38:22: fatal error: endian.h: No such file or directory
#include <endian.h>
^
compilation terminated.
gmake[2]: *** [Makefile:3874: leveldb/db/leveldb_libleveldb_a-builder.o] Error 1
gmake[2]: Leaving directory '/usr/src/bu-src/src'
gmake[1]: *** [Makefile:8239: all-recursive] Error 1
gmake[1]: Leaving directory '/usr/src/bu-src/src'
gmake: *** [Makefile:652: all-recursive] Error 1

Testnet for BUIP001

Why is there no testnet for BUIP001/Emergent Consensus? Segwit was tested in 4 different testnets.

BU miners are already signalling for a hard fork that has never been tested. Correct me if I am wrong but BU needs a proper testnet.

Compiling gives error "make[2]: *** [libbitcoin_server_a-main.o] Error 4"

I'm trying to switch my node over to BU, but I'm running into errors on compilation. Any help is appreciated! I'm compiling this on bitnodes hardware running:

bitnodes@bitnodes-hardware:~/src/bu-src$ cat /etc/lsb-release
DISTRIB_ID=Ubuntu
DISTRIB_RELEASE=14.04
DISTRIB_CODENAME=trusty
DISTRIB_DESCRIPTION="Ubuntu 14.04.5 LTS"

I ran these commands for the install:

$ mkdir -p ~/src
$ cd ~/src
$ git clone https://github.com/BitcoinUnlimited/BitcoinUnlimited.git bu-src
$ cd bu-src
$ git checkout bu0.12.1c
$ ./autogen.sh
$ ./configure --without-gui --without-miniupnpc --disable-wallet
$ export NUMCPUS=grep -c '^processor' /proc/cpuinfo
$ make -j$NUMCPUS

Here is the output from the last command (make) with errors:

bitnodes@bitnodes-hardware:~/src/bu-src$ make -j$NUMCPUS
Making all in src
make[1]: Entering directory /home/bitnodes/src/bu-src/src' make[2]: Entering directory /home/bitnodes/src/bu-src/src'
CXX libbitcoinconsensus_la-hash.lo
CXX libbitcoinconsensus_la-pubkey.lo
CXX libbitcoinconsensus_la-uint256.lo
CXX libbitcoinconsensus_la-utilstrencodings.lo
make[3]: Entering directory /home/bitnodes/src/bu-src/src/secp256k1' gcc -I. -g -O2 -Wall -Wextra -Wno-unused-function -c src/gen_context.c -o gen_context.o CXX bitcoind-bitcoind.o CXX libbitcoin_server_a-addrman.o CXX libbitcoin_server_a-alert.o CXX libbitcoin_server_a-bitnodes.o gcc gen_context.o -o gen_context ./gen_context CC src/libsecp256k1_la-secp256k1.lo CXX libbitcoin_server_a-bloom.o CCLD libsecp256k1.la make[3]: Leaving directory /home/bitnodes/src/bu-src/src/secp256k1'
CXX libbitcoin_server_a-chain.o
CXX libbitcoin_server_a-checkpoints.o
CXX libbitcoin_server_a-httprpc.o
CXX libbitcoin_server_a-httpserver.o
CXX libbitcoin_server_a-init.o
CXX libbitcoin_server_a-dbwrapper.o
CXX libbitcoin_server_a-main.o
CXX libbitcoin_server_a-merkleblock.o
CXX libbitcoin_server_a-miner.o
CXX libbitcoin_server_a-net.o
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See file:///usr/share/doc/gcc-4.8/README.Bugs for instructions.
make[2]: *** [libbitcoin_server_a-init.o] Error 4
make[2]: *** Waiting for unfinished jobs....
g++: internal compiler error: Killed (program cc1plus)
Please submit a full bug report,
with preprocessed source if appropriate.
See file:///usr/share/doc/gcc-4.8/README.Bugs for instructions.
make[2]: *** [libbitcoin_server_a-main.o] Error 4
make[2]: Leaving directory /home/bitnodes/src/bu-src/src' make[1]: *** [all-recursive] Error 1 make[1]: Leaving directory /home/bitnodes/src/bu-src/src'
make: *** [all-recursive] Error 1

"unlimited.cpp:56:36: error: init_priority attribute requires integer constant between 101 and 65535 inclusive" on FreeBSD

After doing the fixes in #38, I ran into another error.

unlimited.cpp:56:36: error: init_priority attribute requires integer constant between 101 and 65535 inclusive
CStatMap statistics __attribute__((init_priority(2)));
                                   ^             ~
1 error generated.
Makefile:4150: recipe for target 'libbitcoin_server_a-unlimited.o' failed
gmake[2]: *** [libbitcoin_server_a-unlimited.o] Error 1
gmake[2]: *** Waiting for unfinished jobs....
gmake[2]: Leaving directory '/usr/home/bitcoin/src/BitcoinUnlimited/src'
Makefile:7073: recipe for target 'all-recursive' failed
gmake[1]: *** [all-recursive] Error 1
gmake[1]: Leaving directory '/usr/home/bitcoin/src/BitcoinUnlimited/src'
Makefile:653: recipe for target 'all-recursive' failed
gmake: *** [all-recursive] Error 1

So I changed that 2 to a 101 and am trying again. That line is the only place that init_priority is set so I think that will work fine

Bitcoin development

Hi Everyone

I am looking for someone to help me create a bitcoin clone with the open source code that is available on github and obviously a few modifications.

Thanx

make check fails for BU 0.12.0

complied with:

$ ./configure --without-gui --enable-upnp-default --disable-wallet --prefix=/usr/local

make check gives

==================================================
   Bitcoin Unlimited 0.12.0: src/test-suite.log
==================================================

# TOTAL: 1
# PASS:  0
# SKIP:  0
# XFAIL: 0
# FAIL:  1
# XPASS: 0
# ERROR: 0


.. contents:: :depth: 2

FAIL: test/test_bitcoin
=======================

Running 180 test cases...
test/DoS_tests.cpp(171): error in "DoS_mapOrphans": check AddOrphanTx(tx, i) failed

*** 1 failure detected in test suite "Bitcoin Test Suite"

$ uname -a
Linux vostok 3.16.0-4-amd64 #1 SMP Debian 3.16.7-ckt25-2 (2016-04-08) x86_64 GNU/Linux

Insufficient Priorities? Need to review whether this is consistent with BU

Making a note here to review this code and whether it makes sense for BU to have it in there. We don't have such strict rate limiting in BU and we allow more free transactions through however this part of the code in main.cpp may not be necessary anymore or make sense.

If we do keep it, at a minimum, we have to account for larger block sizes so : DEAULT_MAX_MEMPOOL should probably be nLargestBlockSeen.

    CAmount mempoolRejectFee = pool.GetMinFee(GetArg("-maxmempool", DEFAULT_MAX_MEMPOOL_SIZE) * 1000000).GetFee(nSize);
    if (mempoolRejectFee > 0 && nModifiedFees < mempoolRejectFee) {
        return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "mempool min fee not met", false, strprintf("%d < %d", nFees, mempoolRejectFee));
    } else if (GetBoolArg("-relaypriority", DEFAULT_RELAYPRIORITY) && nModifiedFees < ::minRelayTxFee.GetFee(nSize) && !AllowFree(entry.GetPriority(chainActive.Height() + 1))) {
        // Require that free transactions have sufficient priority to be mined in the next block.
        return state.DoS(0, false, REJECT_INSUFFICIENTFEE, "insufficient priority");
    }

Test suite fails on fresh build on debian, no idea as to why

Test suite log :

Bitcoin Unlimited 0.12.1: src/test-suite.log

TOTAL: 1

PASS: 0

SKIP: 0

XFAIL: 0

FAIL: 1

XPASS: 0

ERROR: 0

.. contents:: :depth: 2

FAIL: test/test_bitcoin

Running 182 test cases...
../../src/test/DoS_tests.cpp(172): error: in "DoS_tests/DoS_mapOrphans": check AddOrphanTx(tx, i) has failed
terminate called without an active exception
unknown location(0): fatal error: in "reverselock_tests/reverselock_errors": signal: SIGABRT (application abort requested)
../../src/test/reverselock_tests.cpp(51): last checkpoint
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "rpc_tests/rpc_rawparams": signal: SIGABRT (application abort requested) ../../src/test/rpc_tests.cpp(54): last checkpoint: "rpc_rawparams" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "rpc_tests/rpc_rawsign": signal: SIGABRT (application abort requested)
../../src/test/rpc_tests.cpp(96): last checkpoint: "rpc_rawsign" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "rpc_tests/rpc_createraw_op_return": signal: SIGABRT (application abort requested) ../../src/test/rpc_tests.cpp(115): last checkpoint: "rpc_createraw_op_return" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "rpc_tests/rpc_format_monetary_values": signal: SIGABRT (application abort requested)
../../src/test/rpc_tests.cpp(133): last checkpoint: "rpc_format_monetary_values" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "rpc_tests/rpc_parse_monetary_values": signal: SIGABRT (application abort requested) ../../src/test/rpc_tests.cpp(175): last checkpoint: "rpc_parse_monetary_values" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "rpc_tests/json_parse_errors": signal: SIGABRT (application abort requested)
../../src/test/rpc_tests.cpp(208): last checkpoint: "json_parse_errors" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "rpc_tests/rpc_ban": signal: SIGABRT (application abort requested) ../../src/test/rpc_tests.cpp(229): last checkpoint: "rpc_ban" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "sanity_tests/basic_sanity": signal: SIGABRT (application abort requested)
../../src/test/sanity_tests.cpp(14): last checkpoint: "basic_sanity" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "script_P2SH_tests/sign": signal: SIGABRT (application abort requested) ../../src/test/script_P2SH_tests.cpp(55): last checkpoint: "sign" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "script_P2SH_tests/norecurse": signal: SIGABRT (application abort requested)
../../src/test/script_P2SH_tests.cpp(129): last checkpoint: "norecurse" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "script_P2SH_tests/set": signal: SIGABRT (application abort requested) ../../src/test/script_P2SH_tests.cpp(156): last checkpoint: "set" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "script_P2SH_tests/is": signal: SIGABRT (application abort requested)
../../src/test/script_P2SH_tests.cpp(213): last checkpoint: "is" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "script_P2SH_tests/switchover": signal: SIGABRT (application abort requested) ../../src/test/script_P2SH_tests.cpp(244): last checkpoint: "switchover" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "script_P2SH_tests/AreInputsStandard": signal: SIGABRT (application abort requested)
../../src/test/script_P2SH_tests.cpp(264): last checkpoint: "AreInputsStandard" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "script_tests/script_build": signal: SIGABRT (application abort requested) ../../src/test/script_tests.cpp(320): last checkpoint: "script_build" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "script_tests/script_valid": signal: SIGABRT (application abort requested)
../../src/test/script_tests.cpp(631): last checkpoint: "script_valid" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "script_tests/script_invalid": signal: SIGABRT (application abort requested) ../../src/test/script_tests.cpp(660): last checkpoint: "script_invalid" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "script_tests/script_PushData": signal: SIGABRT (application abort requested)
../../src/test/script_tests.cpp(685): last checkpoint: "script_PushData" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "script_tests/script_CHECKMULTISIG12": signal: SIGABRT (application abort requested) ../../src/test/script_tests.cpp(747): last checkpoint: "script_CHECKMULTISIG12" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "script_tests/script_CHECKMULTISIG23": signal: SIGABRT (application abort requested)
../../src/test/script_tests.cpp(777): last checkpoint: "script_CHECKMULTISIG23" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "script_tests/script_combineSigs": signal: SIGABRT (application abort requested) ../../src/test/script_tests.cpp(846): last checkpoint: "script_combineSigs" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "script_tests/script_standard_push": signal: SIGABRT (application abort requested)
../../src/test/script_tests.cpp(955): last checkpoint: "script_standard_push" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "script_tests/script_IsPushOnly_on_invalid_scripts": signal: SIGABRT (application abort requested) ../../src/test/script_tests.cpp(976): last checkpoint: "script_IsPushOnly_on_invalid_scripts" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "script_tests/script_GetScriptAsm": signal: SIGABRT (application abort requested)
../../src/test/script_tests.cpp(987): last checkpoint: "script_GetScriptAsm" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "scriptnum_tests/creation": signal: SIGABRT (application abort requested) ../../src/test/scriptnum_tests.cpp(168): last checkpoint: "creation" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "scriptnum_tests/operators": signal: SIGABRT (application abort requested)
../../src/test/scriptnum_tests.cpp(181): last checkpoint: "operators" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "serialize_tests/sizes": signal: SIGABRT (application abort requested) ../../src/test/serialize_tests.cpp(19): last checkpoint: "sizes" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "serialize_tests/floats_conversion": signal: SIGABRT (application abort requested)
../../src/test/serialize_tests.cpp(50): last checkpoint: "floats_conversion" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "serialize_tests/doubles_conversion": signal: SIGABRT (application abort requested) ../../src/test/serialize_tests.cpp(69): last checkpoint: "doubles_conversion" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "serialize_tests/floats": signal: SIGABRT (application abort requested)
../../src/test/serialize_tests.cpp(98): last checkpoint: "floats" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "serialize_tests/doubles": signal: SIGABRT (application abort requested) ../../src/test/serialize_tests.cpp(115): last checkpoint: "doubles" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "serialize_tests/varints": signal: SIGABRT (application abort requested)
../../src/test/serialize_tests.cpp(132): last checkpoint: "varints" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "serialize_tests/compactsize": signal: SIGABRT (application abort requested) ../../src/test/serialize_tests.cpp(164): last checkpoint: "compactsize" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "serialize_tests/noncanonical": signal: SIGABRT (application abort requested)
../../src/test/serialize_tests.cpp(195): last checkpoint: "noncanonical" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "serialize_tests/insert_delete": signal: SIGABRT (application abort requested) ../../src/test/serialize_tests.cpp(232): last checkpoint: "insert_delete" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "sighash_tests/sighash_test": signal: SIGABRT (application abort requested)
../../src/test/sighash_tests.cpp(124): last checkpoint: "sighash_test" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "sighash_tests/sighash_from_data": signal: SIGABRT (application abort requested) ../../src/test/sighash_tests.cpp(171): last checkpoint: "sighash_from_data" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "sigopcount_tests/GetSigOpCount": signal: SIGABRT (application abort requested)
../../src/test/sigopcount_tests.cpp(30): last checkpoint: "GetSigOpCount" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "skiplist_tests/skiplist_test": signal: SIGABRT (application abort requested) ../../src/test/skiplist_tests.cpp(19): last checkpoint: "skiplist_test" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "skiplist_tests/getlocator_test": signal: SIGABRT (application abort requested)
../../src/test/skiplist_tests.cpp(48): last checkpoint: "getlocator_test" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "streams_tests/streams_serializedata_xor": signal: SIGABRT (application abort requested) ../../src/test/streams_tests.cpp(19): last checkpoint: "streams_serializedata_xor" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "timedata_tests/util_MedianFilter": signal: SIGABRT (application abort requested)
../../src/test/timedata_tests.cpp(15): last checkpoint: "util_MedianFilter" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "transaction_tests/tx_valid": signal: SIGABRT (application abort requested) ../../src/test/transaction_tests.cpp(88): last checkpoint: "tx_valid" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "transaction_tests/tx_invalid": signal: SIGABRT (application abort requested)
../../src/test/transaction_tests.cpp(163): last checkpoint: "tx_invalid" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "transaction_tests/basic_transaction_tests": signal: SIGABRT (application abort requested) ../../src/test/transaction_tests.cpp(237): last checkpoint: "basic_transaction_tests" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "transaction_tests/test_Get": signal: SIGABRT (application abort requested)
../../src/test/transaction_tests.cpp(291): last checkpoint: "test_Get" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "transaction_tests/test_IsStandard": signal: SIGABRT (application abort requested) ../../src/test/transaction_tests.cpp(317): last checkpoint: "test_IsStandard" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "tx_validationcache_tests/tx_mempool_block_doublespend": signal: SIGABRT (application abort requested)
../../src/test/txvalidationcache_tests.cpp(30): last checkpoint: "tx_mempool_block_doublespend" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "versionbits_tests/versionbits_test": signal: SIGABRT (application abort requested) ../../src/test/versionbits_tests.cpp(137): last checkpoint: "versionbits_test" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "versionbits_tests/versionbits_computeblockversion": signal: SIGABRT (application abort requested)
../../src/test/versionbits_tests.cpp(213): last checkpoint: "versionbits_computeblockversion" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "uint256_tests/basics": signal: SIGABRT (application abort requested) ../../src/test/uint256_tests.cpp(76): last checkpoint: "basics" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "uint256_tests/comparison": signal: SIGABRT (application abort requested)
../../src/test/uint256_tests.cpp(128): last checkpoint: "comparison" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "uint256_tests/methods": signal: SIGABRT (application abort requested) ../../src/test/uint256_tests.cpp(160): last checkpoint: "methods" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "uint256_tests/conversion": signal: SIGABRT (application abort requested)
../../src/test/uint256_tests.cpp(254): last checkpoint: "conversion" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "univalue_tests/univalue_constructor": signal: SIGABRT (application abort requested) ../../src/test/univalue_tests.cpp(18): last checkpoint: "univalue_constructor" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "univalue_tests/univalue_typecheck": signal: SIGABRT (application abort requested)
../../src/test/univalue_tests.cpp(66): last checkpoint: "univalue_typecheck" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "univalue_tests/univalue_set": signal: SIGABRT (application abort requested) ../../src/test/univalue_tests.cpp(108): last checkpoint: "univalue_set" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "univalue_tests/univalue_array": signal: SIGABRT (application abort requested)
../../src/test/univalue_tests.cpp(167): last checkpoint: "univalue_array" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "univalue_tests/univalue_object": signal: SIGABRT (application abort requested) ../../src/test/univalue_tests.cpp(205): last checkpoint: "univalue_object" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "univalue_tests/univalue_readwrite": signal: SIGABRT (application abort requested)
../../src/test/univalue_tests.cpp(291): last checkpoint: "univalue_readwrite" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/util_criticalsection": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(25): last checkpoint: "util_criticalsection" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/util_ParseHex": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(52): last checkpoint: "util_ParseHex" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/util_HexStr": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(69): last checkpoint: "util_HexStr" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/util_DateTimeStrFormat": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(91): last checkpoint: "util_DateTimeStrFormat" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/util_ParseParameters": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(100): last checkpoint: "util_ParseParameters" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/util_GetArg": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(124): last checkpoint: "util_GetArg" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/util_FormatMoney": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(148): last checkpoint: "util_FormatMoney" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/util_ParseMoney": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(173): last checkpoint: "util_ParseMoney" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/util_IsHex": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(221): last checkpoint: "util_IsHex" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/util_seed_insecure_rand": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(236): last checkpoint: "util_seed_insecure_rand" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/util_TimingResistantEqual": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(266): last checkpoint: "util_TimingResistantEqual" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/strprintf_numbers": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(281): last checkpoint: "strprintf_numbers" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/gettime": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(307): last checkpoint: "gettime" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/test_ParseInt32": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(312): last checkpoint: "test_ParseInt32" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/test_ParseInt64": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(341): last checkpoint: "test_ParseInt64" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/test_ParseDouble": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(371): last checkpoint: "test_ParseDouble" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion secp256k1_context_sign == NULL' failed. unknown location(0): fatal error: in "util_tests/test_FormatParagraph": signal: SIGABRT (application abort requested) ../../src/test/util_tests.cpp(399): last checkpoint: "test_FormatParagraph" fixture entry. test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertionsecp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/test_FormatSubVersion": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(411): last checkpoint: "test_FormatSubVersion" fixture entry.
test_bitcoin: ../../src/key.cpp:306: void ECC_Start(): Assertion `secp256k1_context_sign == NULL' failed.
unknown location(0): fatal error: in "util_tests/test_ParseFixedPoint": signal: SIGABRT (application abort requested)
../../src/test/util_tests.cpp(423): last checkpoint: "test_ParseFixedPoint" fixture entry.

*** 81 failures are detected in the test module "Bitcoin Test Suite"
FAIL test/test_bitcoin (exit status: 201)

Proposal - suitable venue for bitcoin development discussion

bitcoin/bitcoin#9149

I've raised the above issue on Core as I noticed that non-core issues, e.g. protocol changes were being discussed on the group designed for bitcoin core development. I am aware that there is an email list, but this doesn't allow for such real-time discussion, whereas IRC does, but then excludes people unable to attend the meeting at the precise time it occurs. Something between the two seems to be needed.

Any suggestions?

Average bandwidth limits decrement each change to Unlimited settings

Bitcoin Unlimited version v0.11.2.0-b440a4f (64-bit)
Windows 7

Enable send/receive bandwidth limit and set Max 500 and Average 13 on Network pane of Unlimited settings. Click OK. Go back to Unlimited settings and the Average settings are now 12. Each change in settings decrements the average values until they reach 9.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.