I hereby claim:
- I am wozz on github.
- I am wozz (https://keybase.io/wozz) on keybase.
- I have a public key whose fingerprint is 3897 E067 2E32 A421 74B7 A840 038C 09F4 62C2 4FC7
To claim this, I am signing this object:
| diff --git a/src/wallet.cpp b/src/wallet.cpp | |
| index 4f7b96e..519a841 100644 | |
| --- a/src/wallet.cpp | |
| +++ b/src/wallet.cpp | |
| @@ -590,6 +590,14 @@ bool CWallet::AddToWalletIfInvolvingMe(const uint256 &hash, const CTransaction& | |
| { | |
| { | |
| LOCK(cs_wallet); | |
| + | |
| + std::string strCmd = GetArg("-txnotify", ""); |
| diff --git a/src/wallet.cpp b/src/wallet.cpp | |
| index 4f7b96e..519a841 100644 | |
| --- a/src/wallet.cpp | |
| +++ b/src/wallet.cpp | |
| @@ -590,6 +590,14 @@ bool CWallet::AddToWalletIfInvolvingMe(const uint256 &hash, const CTransaction& | |
| { | |
| { | |
| LOCK(cs_wallet); | |
| + | |
| + std::string strCmd = GetArg("-txnotify", ""); |
| #!/usr/bin/env python | |
| import sys | |
| import datetime | |
| from django.template import Template, Context | |
| from django.conf import settings | |
| settings.configure() | |
| template = """ | |
| <html> |
I hereby claim:
To claim this, I am signing this object:
| #!/bin/bash | |
| #send from single address with single input | |
| #pk1 = private key | |
| #addr1.txt = send from address (generated) | |
| #pub1 = pub key (generated) | |
| #output.txt = send to address + amount | |
| sx pubkey < pk1 > pub1 | |
| sx addr < pk1 > addr1.txt |
| #!/bin/bash | |
| # inputs: | |
| #addr1.txt = send from address | |
| #output.txt = send to address + amount | |
| #pk1 = private key to addr1 | |
| #pub1 = public key to addr1 | |
| sx history `cat addr1.txt` | grep Unspent -B 3 | grep output: | awk '{print $2}' > inputs.txt |
| {% with list.number|add:"-5" as startnum %} | |
| {% with list.number|add:"5" as endnum %} | |
| {% for i in list.paginator.page_range %} | |
| {% if i > startnum and i < endnum %} | |
| <a href="?page={{ i }}">{{ i }}</a> | |
| {% endif %} | |
| {% endfor %} | |
| {% endwith %} | |
| {% endwith %} |