Mihailo Milenkovic
f29445f03e
Fix
2018-10-26 21:45:52 +02:00
Asher Dawes
95b8f04f77
Updating version
2018-10-26 09:29:57 -07:00
Asher Dawes
395f18f556
Merge pull request #146 from miketout/dev
...
Dev
2018-10-26 09:21:53 -07:00
Mihailo Milenkovic
07660bb098
Fix
2018-10-26 18:08:39 +02:00
Mihailo Milenkovic
b18631ae2b
Fix
2018-10-26 17:49:21 +02:00
Mihailo Milenkovic
32572846de
Fix
2018-10-26 16:55:36 +02:00
Mihailo Milenkovic
4dbfd427b7
Fix
2018-10-26 16:40:58 +02:00
Mihailo Milenkovic
2fd999a2f6
Multisig withdraw fix
2018-10-26 13:00:16 +02:00
miketout
a12f70bf55
Ensure that only valid staking transactions are synced with wallets
2018-10-26 01:04:07 -07:00
miketout
846b64df6f
Merge branch 'dev' of https://github.com/miketout/komodo into dev
2018-10-25 23:25:55 -07: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
Homu
186874bb83
Auto merge of #3622 - Eirik0:rpc-assert-message, r=daira
...
Fix potentially misleading test failures
This is in response to https://github.com/zcash/zcash/pull/3590#discussion_r224677644
Currently statements such as:
```assert_equal("Embarassment", "Embarrassment", "Misspelling detected")```
Will produce essentially the following error:
```
Assertion failed: Misspelling detected; expected: <Embarassment> but was: <Embarrassment>
File "/home/eirik/Development/zcash/qa/rpc-tests/test_framework/test_framework.py", line 121, in main
self.run_test()
File "/home/eirik/Development/zcash/qa/rpc-tests/test_spelling.py", line 13, in run_test
```
Which is misleading because the item on the left is not what is actually expected.
This PR changes the assertion failure to be displayed as:
```
Assertion failed: (left == right); Misspelling detected
left: <Embarassment>
right: <Embarrassment>
File "/home/eirik/Development/zcash/qa/rpc-tests/test_framework/test_framework.py", line 121, in main
self.run_test()
File "/home/eirik/Development/zcash/qa/rpc-tests/test_spelling.py", line 13, in run_test
```
2018-10-24 23:14:19 -07:00
miketout
ada0f5a496
Merge pull request #32 from VerusCoin/dev
...
Adding missing batch scripts
2018-10-24 16:09:40 -07:00
Asher Dawes
6954882ce3
Adding missing batch scripts
2018-10-24 16:03:24 -07:00
Homu
e88a069627
Auto merge of #3620 - Eirik0:fix-sendmany-errmsg, r=bitcartel
...
Fix error message
This error should never happen, but it may as well reference the method it is thrown from.
2018-10-24 14:12:05 -07:00
Eirik Ogilvie-Wigley
882a4f577f
Fix potentially misleading test failures
2018-10-24 13:53:25 -06:00
Eirik Ogilvie-Wigley
81005fb214
Fix error message
2018-10-24 12:05:48 -06: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
jl777
27ca539872
Merge pull request #915 from blackjok3rtt/setpubkey_RPC
...
Setpubkey rpc
2018-10-23 22:36:05 -11:00
blackjok3r
4a407db920
forgot declare
2018-10-24 16:39:38 +08: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
miketout
fbb4a542c8
Merge branch 'dev' of https://github.com/miketout/komodo into dev
2018-10-23 21:22:28 -07:00
miketout
9532e6b7c9
Hoisted path var in ZC_GetBaseParamsDir
2018-10-23 21:21:59 -07:00
miketout
3994f32514
Merge pull request #31 from VerusCoin/master
...
Fetching deltas from VerusCoin Repository
2018-10-23 19:36:12 -07:00
Asher Dawes
325b6a72a7
Merge pull request #144 from VerusCoin/dev
...
Adding symbols back to Linux builds.
2018-10-23 19:21:19 -07:00
Asher Dawes
844637a503
Adding symbols back to Linux builds.
...
Stripping symbols on master branch builds
2018-10-23 19:19:38 -07:00
miketout
8a1e0d0d5f
Add support for -zcashparamsdir parameter
2018-10-23 16:39:31 -07:00
jl777
0af33a3f0d
-print, allow ztx to be non 0x00 ends for txpow
2018-10-23 08:01:32 -11:00
jl777
607133377c
Randomize signature for txpow
2018-10-23 07:41:46 -11:00
ca333
47768efe8f
Merge pull request #68 from jl777/dev
...
update dev
2018-10-23 09:35:19 +02: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
9f333d205a
Fix
2018-10-22 05:19:05 -11:00
jl777
a2c93c1f0d
Check tx during mining
2018-10-22 05:17:51 -11:00
Eirik Ogilvie-Wigley
095eee4f4d
Wrap long line and update comments
2018-10-22 10:01:17 -06:00
jl777
cd9d418aa2
Fix
2018-10-21 13:38:27 -11:00
jl777
8551533ace
uint256S
2018-10-21 12:05:58 -11:00
jl777
de59290f47
Exeption for genesis coinbase
2018-10-21 12:03:24 -11:00
jl777
19e4c023b6
ASSETCHAINS_TXPOW for signrawtransaction
2018-10-21 11:36:18 -11:00
Asher Dawes
7cd3bbd0f4
Merge pull request #143 from VerusCoin/dev
...
Adding missing build
2018-10-21 15:22:59 -07:00
Asher Dawes
2b198dc777
Adding missing build
2018-10-21 15:22:05 -07:00
Asher Dawes
f5d9dde208
Merge pull request #142 from VerusCoin/dev
...
Updating version
2018-10-21 15:19:37 -07:00
Asher Dawes
7e6fdc5b7f
Updating version
2018-10-21 15:18:47 -07:00
jl777
b8fefe8a26
Syntax
2018-10-21 11:17:32 -11:00
jl777
b1c08466e9
Initial -ac_txpow 0, 1, 2, 3 with validation, but no txcreation
2018-10-21 11:13:35 -11:00
Asher Dawes
f3e9093da6
Merge pull request #141 from VerusCoin/dev
...
Dev
2018-10-21 15:04:29 -07:00