diff options
| author | luigi1111 <luigi1111w@gmail.com> | 2018-08-22 20:47:28 -0500 |
|---|---|---|
| committer | luigi1111 <luigi1111w@gmail.com> | 2018-08-22 20:47:28 -0500 |
| commit | a5d21be843b88a726920dd2b7e563e85508cfeb1 (patch) | |
| tree | 1b9baa6631b87a8b39f914513f47108de2d168a1 /src/ringct | |
| parent | 0d415ff63806440ca46781b613d8b68e842a899f (diff) | |
| parent | 4616cf2641c69e48ae19303099e701088ffe9045 (diff) | |
| download | monzero-core-a5d21be843b88a726920dd2b7e563e85508cfeb1.tar.gz monzero-core-a5d21be843b88a726920dd2b7e563e85508cfeb1.tar.xz monzero-core-a5d21be843b88a726920dd2b7e563e85508cfeb1.zip | |
Merge pull request #4210
4616cf2 Fixed ZMQ-RPC for transactions and GET_BLOCKS_FAST (vtnerd)
Diffstat (limited to 'src/ringct')
| -rw-r--r-- | src/ringct/rctTypes.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/src/ringct/rctTypes.h b/src/ringct/rctTypes.h index 844291d0c..a3ccf2e85 100644 --- a/src/ringct/rctTypes.h +++ b/src/ringct/rctTypes.h @@ -403,6 +403,16 @@ namespace rct { }; struct rctSig: public rctSigBase { rctSigPrunable p; + + keyV& get_pseudo_outs() + { + return type == RCTTypeSimpleBulletproof ? p.pseudoOuts : pseudoOuts; + } + + keyV const& get_pseudo_outs() const + { + return type == RCTTypeSimpleBulletproof ? p.pseudoOuts : pseudoOuts; + } }; //other basepoint H = toPoint(cn_fast_hash(G)), G the basepoint |
