From a513ea90d426ef449a0a8fd16aee22dfeeb21b97 Mon Sep 17 00:00:00 2001 From: Jack Grigg Date: Wed, 7 Dec 2016 17:36:48 +1300 Subject: [PATCH] Fix indentation --- src/utiltest.cpp | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/utiltest.cpp b/src/utiltest.cpp index 3ebbcf128..5cebc1a5d 100644 --- a/src/utiltest.cpp +++ b/src/utiltest.cpp @@ -51,9 +51,9 @@ CWalletTx GetValidReceive(ZCJoinSplit& params, // Add the signature assert(crypto_sign_detached(&mtx.joinSplitSig[0], NULL, - dataToBeSigned.begin(), 32, - joinSplitPrivKey - ) == 0); + dataToBeSigned.begin(), 32, + joinSplitPrivKey + ) == 0); CTransaction tx {mtx}; CWalletTx wtx {NULL, tx}; @@ -135,9 +135,9 @@ CWalletTx GetValidSpend(ZCJoinSplit& params, // Add the signature assert(crypto_sign_detached(&mtx.joinSplitSig[0], NULL, - dataToBeSigned.begin(), 32, - joinSplitPrivKey - ) == 0); + dataToBeSigned.begin(), 32, + joinSplitPrivKey + ) == 0); CTransaction tx {mtx}; CWalletTx wtx {NULL, tx}; return wtx;