diff options
author | Shen Noether <Shen.Noether@gmx.com> | 2016-06-12 21:53:01 +0100 |
---|---|---|
committer | moneromooo-monero <moneromooo-monero@users.noreply.github.com> | 2016-08-28 21:28:23 +0100 |
commit | f8c04ad94fff9df079b59f197a49e19478385725 (patch) | |
tree | ca3c8079b2c56f9ad3e5815d1469e970c3d6dfdd /src/ringct/rctSigs.h | |
parent | ringct: new {gen,decode}Rct APIs for convenience (diff) | |
download | monero-f8c04ad94fff9df079b59f197a49e19478385725.tar.xz |
ringct: txn fee stuff
Diffstat (limited to 'src/ringct/rctSigs.h')
-rw-r--r-- | src/ringct/rctSigs.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/ringct/rctSigs.h b/src/ringct/rctSigs.h index a7306bc31..d5c036910 100644 --- a/src/ringct/rctSigs.h +++ b/src/ringct/rctSigs.h @@ -112,8 +112,8 @@ namespace rct { // this shows that sum inputs = sum outputs //Ver: // verifies the above sig is created corretly - mgSig proveRctMG(const ctkeyM & pubs, const ctkeyV & inSk, const keyV &outMasks, const ctkeyV & outPk, unsigned int index); - bool verRctMG(mgSig mg, const ctkeyM & pubs, const ctkeyV & outPk); + mgSig proveRctMG(const ctkeyM & pubs, const ctkeyV & inSk, const keyV &outMasks, const ctkeyV & outPk, unsigned int index, key txnFee); + bool verRctMG(mgSig mg, const ctkeyM & pubs, const ctkeyV & outPk, key txnFee); //These functions get keys from blockchain //replace these when connecting blockchain |