diff options
author | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-20 21:59:59 +0000 |
---|---|---|
committer | s_nakamoto <s_nakamoto@1a98c847-1fd6-4fd8-948a-caf3550aa51b> | 2010-02-20 21:59:59 +0000 |
commit | 75199de534a590329a3b636d63fade2e4544ce97 (patch) | |
tree | b82f1257a90f12401399eac4b0c9aeee88881003 /script.h | |
parent | c6ab3cf6d9cf5f5ade3b8fc48590e1bc4794cb43 (diff) |
Address Book with tabs instead of separate Your Address book, v0.2.4
with live update of default address in main window,
New... button on main window for creating new receiving address,
made receiving address labels more visible,
ask user before paying transaction fee,
when sending to bitcoin address also use a bitcoin address for the change,
added some event.Skip() to fix UI glitches
-- version 0.2.4
git-svn-id: https://bitcoin.svn.sourceforge.net/svnroot/bitcoin/trunk@68 1a98c847-1fd6-4fd8-948a-caf3550aa51b
Diffstat (limited to 'script.h')
-rw-r--r-- | script.h | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -580,6 +580,11 @@ public: *this << OP_DUP << OP_HASH160 << hash160 << OP_EQUALVERIFY << OP_CHECKSIG;
}
+ void SetBitcoinAddress(const vector<unsigned char>& vchPubKey)
+ {
+ SetBitcoinAddress(Hash160(vchPubKey));
+ }
+
bool SetBitcoinAddress(const string& strAddress)
{
this->clear();
|