Commit Graph

973 Commits

Author SHA1 Message Date
jl777
1ef2ca6e19 Test 2018-11-07 17:55:11 -11:00
jl777
ef6f591104 Test 2018-11-07 10:49:34 -11:00
Jonathan "Duke" Leto
d3f0b4269d Clean up dicebet/dicestatus error handling and add new macro to make things easier 2018-11-07 13:30:29 -08:00
jl777
a9545b529e Issue refund when entropy is compromised 2018-11-06 23:24:27 -11:00
jl777
4b3228fccf Prevent illegal CC funcid 2018-11-06 22:55:29 -11:00
jl777
22496dcbc3 Remove lock from DiceStatus rpc, rely on internal locks 2018-11-06 13:22:43 -11:00
jl777
159985c954 Fix 2018-11-06 00:23:08 -11:00
miketout
73b4d69673 Return more stake outputs, including those thought to be change, fix cheatcatcher error reporting 2018-11-01 19:23:23 -07:00
jl777
612bfb3500 Merge pull request #927 from letolabs/jsindex
Add jsindex to z_listreceivedbyaddress to uniquely identify
2018-11-01 07:13:46 -11:00
Jonathan "Duke" Leto
0d888fcd32 Add jsindex to z_listreceivedbyaddress to uniquely identify them 2018-11-01 11:16:57 -07:00
miketout
4ac64cd2a0 Fix non-final sequence and nLockTime 2018-11-01 11:08:20 -07:00
jl777
1a0239ba0d Fix compiler issues 2018-11-01 06:49:02 -11:00
miketout
a9774a32f7 Added new categories to transactions in listtransactions 2018-10-31 21:32:12 -07:00
jl777
19d614c834 Merge pull request #924 from Mixa84/gatewaysCC
Multi signature gateways fix
2018-10-31 05:23:46 -11:00
jl777
47ab0296d6 Oraclesregister, allow using floating point for < 1.0 data fee 2018-10-31 02:48:42 -11:00
Mihailo Milenkovic
52bd617b1b Fix 2018-10-29 18:17:30 +01:00
miketout
90cc70ccb4 Fix Komodo interest when z_sendmany uses builder. Sapling spend of time locked coinbases. Cheat catcher 2018-10-29 01:38:07 -07:00
blackjok3r
d48df7dc33 return json to dicestatus 2018-10-28 14:30:55 +08:00
blackjok3r
5e25d091e2 try 2018-10-28 14:09:19 +08:00
blackjok3r
aa45c19c97 try 2018-10-28 13:49:52 +08:00
blackjok3r
5c9845bb0f fix 2018-10-28 13:32:19 +08:00
blackjok3r
b30cf0e25e try 2018-10-28 13:30:02 +08:00
miketout
99aeab28f9 Integrate latest Zcash fixes and update for non-latin user names 2018-10-27 20:29:03 -07:00
Mihailo Milenkovic
8841c81404 Fix 2018-10-26 22:02:42 +02:00
Mihailo Milenkovic
f29445f03e Fix 2018-10-26 21:45:52 +02:00
Mihailo Milenkovic
b18631ae2b Fix 2018-10-26 17:49:21 +02:00
Mihailo Milenkovic
2fd999a2f6 Multisig withdraw fix 2018-10-26 13:00:16 +02:00
miketout
4c8293dc76 Fixed issue #145, should fix stake synching with wallets 2018-10-25 23:25:31 -07:00
jl777
3ba3090468 syntax 2018-10-24 22:18:54 -11:00
jl777
c83d68baaa Allow z_sendmany to notaryaddr 2018-10-24 22:16:45 -11:00
jl777
f776d51149 Fix gettransaction crash with dpowconfs 2018-10-24 04:54:29 -11:00
jl777
0779df5d51 fix get transactions crash 2018-10-24 04:53:37 -11:00
jl777
8179be4fb8 Fix crash for disablewallet=1 2018-10-24 00:09:36 -11:00
blackjok3r
7e62f8f397 show pubkey in getinfo, and enable set pubkey via RPC call. 2018-10-24 16:21:43 +08:00
Homu
dc3398fa88 Auto merge of #3611 - bitcartel:3467_add_sapling_benchmarks, r=bitcartel
Closes #3467. Add benchmarks for Sapling spends and outputs.

Four new benchmarks are added to RPC zcbenchmark:
- createsaplingspend
- createsaplingoutput
- verifysaplingspend
- verifysaplingoutput
2018-10-23 22:52:22 -07:00
Homu
d2019a4ccd Auto merge of #3581 - Eirik0:3580-unspent-note-cleanup, r=daira
Remove GetUnspentFilteredNotes

Closes #3580

This PR generalized `GetFilteredNotes`, expanding its functionality to also do what we do in `GetUnspentFilteredNotes`. This enables us to remove the latter.
2018-10-22 22:36:05 -07:00
jl777
b4e1a4f87b Fix syntax 2018-10-19 06:49:32 -11:00
jl777
9bf7b5c1f5 Dpowconfs for wallet 2018-10-19 06:38:28 -11:00
jl777
7b8cefe192 Wallettx2json raw confirmations 2018-10-19 06:37:31 -11:00
Mihailo Milenkovic
39e950f8d8 Fix oraclefeed bugs and gatewaysmultisig rpc call 2018-10-19 16:17:37 +02:00
Anton Lysakov
a3ee81a873 added oracle data type validation 2018-10-19 17:13:32 +07:00
Homu
32c2c17a91 Auto merge of #3579 - Eirik0:3577-generate-sprout-zkey, r=bitcartel
Make it clear that CWallet::GenerateNewZKey is Sprout specific

Closes https://github.com/zcash/zcash/issues/3577

When adding sapling support we had considered making the method `GenerateNewZKey` generic, but it ended up making more sense to add a second method `GenerateNewSaplingZKey` for sapling support.

This PR changes the name of `GenerateNewZKey` to `GenerateNewSproutZKey` and changes the return type from `libzcash::PaymentAddress` to `libzcash::SproutPaymentAddress` to make it more clear that this is what the method does.
2018-10-18 19:47:46 -07:00
Simon
67d2b79783 Closes #3467. Add benchmarks for Sapling spends and outputs.
Four new benchmarks are added to RPC zcbenchmark:
- createsaplingspend
- createsaplingoutput
- verifysaplingspend
- verifysaplingoutput
2018-10-18 19:10:59 -07:00
Homu
e077fb321b Auto merge of #3541 - leto:amount_docs, r=bitcartel
Clarify in sendmany/z_sendmany rpc docs that amounts are not FP

Fixes #3539

I clarified in the docs that only 8 digits of precision are allowed. For example, if you try 9 digits you will get:
```
zcash-cli z_sendmany $TADDR  "[{\"address\":\"$ZADDR\",\"amount\":0.123456789}]"
error code: -3
error message:
Invalid amount
```
2018-10-18 15:36:34 -07:00
Eirik Ogilvie-Wigley
e92414f91e Remove GetUnspentFilteredNotes 2018-10-18 15:52:13 -06:00
Eirik Ogilvie-Wigley
9396b85db8 Remove unspent note entry structs 2018-10-18 15:52:07 -06:00
jl777
a079cdbc6c rawconfirmations 2018-10-14 12:39:06 -11:00
jl777
20523c958c Test 2018-10-14 12:00:58 -11:00
jl777
956a638a60 Test 2018-10-14 11:59:55 -11:00
jl777
c606ce6925 Backward compatible dPoW enforcement! 2018-10-14 11:56:06 -11:00