Rename some usage of 'pour'.

This commit is contained in:
Sean Bowe
2016-07-14 16:10:41 -06:00
parent bb64be52fe
commit b7e4abd6f7
13 changed files with 156 additions and 156 deletions

View File

@@ -76,7 +76,7 @@ double benchmark_create_joinsplit()
uint256 anchor = ZCIncrementalMerkleTree().root();
timer_start();
JSDescription pourtx(*pzcashParams,
JSDescription jsdescription(*pzcashParams,
pubKeyHash,
anchor,
{JSInput(), JSInput()},
@@ -85,7 +85,7 @@ double benchmark_create_joinsplit()
0);
double ret = timer_stop();
assert(pourtx.Verify(*pzcashParams, pubKeyHash));
assert(jsdescription.Verify(*pzcashParams, pubKeyHash));
return ret;
}