index
:
discoin
1.10-archive
1.14-maint
1.14.4-dev
1.14.5-dev
1.17-dev
1.18-dev
1.21-dev
1.4-archive
1.6-archive
1.7-archive
1.8-archive
1.8-safemode
master
Unnamed repository; edit this file 'description' to name the repository.
about
summary
refs
log
tree
commit
diff
log msg
author
committer
range
path:
root
/
src
/
bitcoinrpc.cpp
Commit message (
Expand
)
Author
Age
Files
Lines
...
*
|
|
Fixed addmultisigaddress if looking up public keys from locked wallets.
Gavin Andresen
2012-01-23
1
-1
/
+4
*
|
|
Added mintime and curtime to RPC getmemorypool
Forrest Voight
2012-01-14
1
-0
/
+4
*
|
|
Separated COINBASE_FLAGS out into main.h and made RPC getmemorypool return it
Forrest Voight
2012-01-14
1
-0
/
+2
*
|
|
Remove base58 encoding from validateaddress/addmultisigaddress
Gavin Andresen
2012-01-13
1
-19
/
+4
*
|
|
Replace OP_EVAL (BIP 12) with Pay-to-script-hash (BIP 16).
Gavin Andresen
2012-01-13
1
-19
/
+40
*
|
|
Merge branch 'getmininginfo' of https://github.com/luke-jr/bitcoin
Gavin Andresen
2012-01-13
1
-3
/
+24
|
\
\
\
|
*
|
|
collect more info on tx pooling and block finding for getmininginfo
Luke Dashjr
2012-01-12
1
-0
/
+3
|
*
|
|
Add new "getmininginfo" JSON-RPC method, with mining-only fields moved out of...
Luke Dashjr
2012-01-12
1
-3
/
+21
*
|
|
|
Compile with extra warnings turned on. And more makefile/code tidying up.
Gavin Andresen
2012-01-12
1
-1
/
+1
|
/
/
/
*
|
|
Compressed pubkeys
Pieter Wuille
2012-01-09
1
-0
/
+3
*
|
|
New RPC commands: getblockhash and getblock
Gavin Andresen
2011-12-23
1
-26
/
+94
*
|
|
Fix broken ExtractAddress (refactored, made callers check for addresses in ke...
Gavin Andresen
2011-12-22
1
-3
/
+5
*
|
|
Revert "Use standard C99 (and Qt) types for 64-bit integers"
Wladimir J. van der Laan
2011-12-21
1
-53
/
+51
*
|
|
Use standard C99 (and Qt) types for 64-bit integers
Luke Dashjr
2011-12-20
1
-51
/
+53
*
|
|
Merge branch 'op_eval'
Gavin Andresen
2011-12-20
1
-2
/
+102
|
\
\
\
|
*
|
|
Use block times for 'hard' OP_EVAL switchover, and refactored EvalScript
Gavin Andresen
2011-12-19
1
-2
/
+2
|
*
|
|
Disable addmultisigaddress if not testnet
Gavin Andresen
2011-12-19
1
-0
/
+2
|
*
|
|
OP_EVAL implementation
Gavin Andresen
2011-12-19
1
-70
/
+52
|
*
|
|
Support 3 new multisignature IsStandard transactions
Gavin Andresen
2011-12-19
1
-1
/
+117
*
|
|
|
Use std::numeric_limits<> for typesafe INT_MAX/etc
Gavin Andresen
2011-12-19
1
-4
/
+4
*
|
|
|
Merge branch 'txn_block_info' of https://github.com/luke-jr/bitcoin
Gavin Andresen
2011-12-19
1
-1
/
+7
|
/
/
/
*
|
|
Merge pull request #574 from sipa/dumpprivkey
Gavin Andresen
2011-12-19
1
-5
/
+10
|
\
\
\
|
*
|
|
Key import and export
Pieter Wuille
2011-12-17
1
-4
/
+8
|
*
|
|
Preparations for key import/export
Pieter Wuille
2011-12-17
1
-0
/
+1
|
*
|
|
Add GetSecret() and GetKeys() to CKeyStore
Pieter Wuille
2011-12-17
1
-1
/
+1
|
|
|
/
|
|
/
|
*
/
|
Implement BIP 14 : separate protocol version from client version
Gavin Andresen
2011-12-19
1
-1
/
+2
|
/
/
*
|
Speed up RPC authentication (reworked pull from Joel Katz)
Gavin Andresen
2011-12-01
1
-7
/
+5
*
|
Implement an mlock()'d string class for storing passphrases
Dylan Noblesmith
2011-11-26
1
-34
/
+14
*
|
Merge pull request #632 from mndrix/deprecate-getblocknumber
Gavin Andresen
2011-11-21
1
-2
/
+4
|
\
\
|
|
/
|
/
|
|
*
Deprecate RPC getblocknumber
Michael Hendricks
2011-11-11
1
-2
/
+4
*
|
Obsolete keypool and make sure database removes log files on shutdown.
Gavin Andresen
2011-11-15
1
-1
/
+10
*
|
Do not launch Shutdown in a new thread in case we are running the UI.
Wladimir J. van der Laan
2011-11-12
1
-2
/
+7
|
/
*
Bugfix: "bits" should be a hex-string, not a number (that just doesn't make s...
Luke Dashjr
2011-10-06
1
-1
/
+8
*
Use C's const char* for status strings rather than C++'s std::string, which i...
David Joel Schwartz
2011-10-05
1
-7
/
+8
*
Merge branch 'listsinceblock' of https://github.com/cdhowie/bitcoin
Gavin Andresen
2011-10-05
1
-0
/
+66
*
Merge branch 'no-cryptopp' of https://github.com/tcatm/bitcoin
Gavin Andresen
2011-10-05
1
-2
/
+1
|
\
|
*
remove cryptopp dependency, add simple unittest for SHA256Transform()
Nils Schneider
2011-09-30
1
-2
/
+1
*
|
Send "Connection: close" HTTP header with JSON-RPC requests (client)
Luke Dashjr
2011-10-05
1
-0
/
+1
*
|
Added RPC call 'getmemorypool' that provides everything needed to construct a...
Forrest Voight
2011-10-01
1
-1
/
+83
|
/
*
Merge pull request #524 from sipa/signandverif
Gavin Andresen
2011-09-30
1
-37
/
+68
|
\
|
*
Use key recovery for message signatures
Pieter Wuille
2011-09-27
1
-25
/
+9
|
*
base64-based sign/verify
Pieter Wuille
2011-09-27
1
-2
/
+8
|
*
Incorporate pubkey in signature, check based on address
Pieter Wuille
2011-09-27
1
-37
/
+49
|
*
Sign and verify message with bitcoin address and public key
Khalahan
2011-09-27
1
-0
/
+66
|
*
Inline base64 encoder/decoder
Pieter Wuille
2011-09-27
1
-19
/
+0
|
*
Faster Base64 decoder.
JoelKatz
2011-09-27
1
-18
/
+0
*
|
Merge pull request #537 from tcatm/remove-deprecated-rpcs
Nils Schneider
2011-09-29
1
-18
/
+0
|
\
\
|
*
|
remove deprecated RPCs
Nils Schneider
2011-09-28
1
-18
/
+0
|
|
/
*
/
deprecate midstate and hash1 in getwork
Nils Schneider
2011-09-28
1
-4
/
+4
|
/
*
Remove wxWidgets
Gavin Andresen
2011-09-26
1
-10
/
+0
[prev]
[next]