diff options
| author | Lee Clagett <code@leeclagett.com> | 2018-08-01 22:10:09 -0400 |
|---|---|---|
| committer | Lee Clagett <code@leeclagett.com> | 2018-08-02 07:30:20 +0000 |
| commit | 4616cf2641c69e48ae19303099e701088ffe9045 (patch) | |
| tree | 05899f812237dc71e2b70d94f96d6a66c7fb4837 /src/ringct | |
| parent | 702a41034d908fa60fbc44792f54b3cdc9f9af2e (diff) | |
| download | monzero-core-4616cf2641c69e48ae19303099e701088ffe9045.tar.gz monzero-core-4616cf2641c69e48ae19303099e701088ffe9045.tar.xz monzero-core-4616cf2641c69e48ae19303099e701088ffe9045.zip | |
Fixed ZMQ-RPC for transactions and GET_BLOCKS_FAST
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 |
