mirror of
https://github.com/monero-project/monero.git
synced 2025-08-10 02:00:17 -04:00
Fixed ZMQ-RPC for transactions and GET_BLOCKS_FAST
This commit is contained in:
parent
702a41034d
commit
4616cf2641
7 changed files with 427 additions and 196 deletions
|
@ -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
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue