Skip to content

Instantly share code, notes, and snippets.

View weissjeffm's full-sized avatar

Jeff Weiss weissjeffm

View GitHub Profile
Started by upstream project "opentxs" build number 157
originally caused by:
Started by user jeff.weiss@monetas.net
Building on master in workspace /var/lib/jenkins/jobs/opentxs/workspace/CXX/g++
> git rev-parse --is-inside-work-tree # timeout=10
Fetching changes from the remote Git repository
> git config remote.origin.url https://github.com/Open-Transactions/opentxs.git # timeout=10
Cleaning workspace
> git rev-parse --verify HEAD # timeout=10
Resetting working tree
root@bob:/etc/apt/sources.list.d# sudo add-apt-repository ppa:monetas/opentxs
More info: https://launchpad.net/~monetas/+archive/ubuntu/opentxs
Press [ENTER] to continue or ctrl-c to cancel adding it
gpg: keyring `/tmp/tmpsjfp3rpb/secring.gpg' created
gpg: keyring `/tmp/tmpsjfp3rpb/pubring.gpg' created
gpg: requesting key A5802DAF from hkp server keyserver.ubuntu.com
gpg: /tmp/tmpsjfp3rpb/trustdb.gpg: trustdb created
gpg: key A5802DAF: public key "Launchpad PPA for monetas" imported
-----BEGIN SIGNED CONTRACT-----
Hash: HASH256
<?xml version="1.0"?>
<notaryProviderContract version="2.0">
<entity shortname="Monetas Employee Collective"
longname="Monetas Employee Collective"
email="techical@monetas.net"
serverURL="https://transactions.com/vers/1/"/>
CMake Error at src/CMakeLists.txt:20 (find_package):
By not providing "Findopentxs.cmake" in CMAKE_MODULE_PATH this project has
asked CMake to find a package configuration file provided by "opentxs", but
CMake did not find one.
Could not find a package configuration file provided by "opentxs" with any
of the following names:
opentxsConfig.cmake
opentxs-config.cmake
#include <opentxs/client/C_API.h>
#include <opentxs/client/OTAPI_Exec.hpp>
#include "ot_made_easy_ot.hpp"
//#include <opentxs/client/ot_otapi_ot.hpp>
#include <string>
int fill_result_buffer(std::string me_return_str, char* result_buf, unsigned int result_size){
if (me_return_str.size() >= result_size){
return -1;
}
42120: ("foreign function: _ZN6Assert8doAssertEPKcmS1_")
42121: ("foreign function: _ZN6Assert8doAssertEPKcmS1_")
42122: ("foreign function: _ZN6Assert8doAssertEPKcmS1_")
42123: ("foreign function: _ZN6Assert8doAssertEPKcmS1_")
42124: ("foreign function: _ZN6Assert8doAssertEPKcmS1_")
42125: ("foreign function: _ZN6Assert8doAssertEPKcmS1_")
42126: ("foreign function: _ZN6Assert8doAssertEPKcmS1_")
42127: ("foreign function: _ZN7opentxs10OTAPI_Wrap4ExecEv")
42128: ("foreign function: _ZN7opentxs10OTAPI_Wrap18FlushMessageBufferEv")
42129: ("foreign function: _ZNK10OTAPI_Func19SendRequestLowLevelERS_RKSs")
(defvar notification-sound-file "/usr/share/sounds/freedesktop/stereo/complete.oga")
(defun my-notify (nick channel message)
(start-process "notif" nil "play"
"-q" notification-sound-file)
(condition-case ()
(notifications-notify :title (format "%s in %s" nick channel)
;; Remove duplicate spaces
:body (replace-regexp-in-string " +" " " message)
:sound-file notification-sound-file)
(defun rcirc-notify-allowed (nick &optional delay)
"Return non-nil if a notification should be made for NICK.
If DELAY is specified, it will be the minimum time in seconds
that can occur between two notifications. The default is
`rcirc-notify-timeout'."
(unless delay (setq delay rcirc-notify-timeout))
(let ((cur-time (time-to-seconds (current-time)))
(cur-assoc (assoc nick rcirc-notify--nick-alist))
(last-time))
(if cur-assoc
(gdb) list
404 //
405 extern "C" {
406 int register_nym(const char* NOTARY_ID, const char* NYM_ID, char* result,
407 unsigned int result_size)
408 {
409 if (MadeEasy::register_nym(NOTARY_ID, NYM_ID).size() >= result_size) {
410 return -1;
411 }
412 strcpy(result, MadeEasy::register_nym(NOTARY_ID, NYM_ID).c_str());
OT_ASSERT in /home/jweiss/workspace/opentxs/src/client/OpenTransactions.cpp at line 4530
stack trace:
/usr/local/lib64/libopentxs-core.so.0 : opentxs::Log::logAssert(char const*, unsigned long, char const*)+0xfd
/usr/local/lib64/libopentxs-client.so.0 : opentxs::OT_API::GetOrLoadPrivateNym(opentxs::Identifier const&, bool, char const*, opentxs::OTPasswordData const*, opentxs::OTPassword const*) const+0x179
/usr/local/lib64/libopentxs-client.so.0 : opentxs::OT_API::registerNym(opentxs::Identifier const&, opentxs::Identifier const&) const+0x2c
/usr/local/lib64/libopentxs-client.so.0 : opentxs::OTAPI_Exec::registerNym(std::string const&, std::string const&) const+0x5b
/usr/local/lib64/libopentxs-client.so.0 : OTAPI_Func::Run() const+0x4e5
/usr/local/lib64/libopentxs-client.so.0 : OTAPI_Func::SendRequestLowLevel(OTAPI_Func&, std::string const&) const+0x72
/usr/local/lib64/libopentxs-client.so.0 : OTAPI_Func::SendRequestOnce(OTAPI_Func&, std::string const&, bool, bool, bool&) const+0xd1
/usr/local/