| 61 | } |
| 62 | |
| 63 | bool BlockChainState::DeltaState::read_keyimage(const KeyImage &key_image, Height *height) const { |
| 64 | auto kit = m_keyimages.find(key_image); |
| 65 | if (kit == m_keyimages.end()) |
| 66 | return m_parent_state->read_keyimage(key_image, height); |
| 67 | *height = m_block_height; |
| 68 | return true; |
| 69 | } |
| 70 | |
| 71 | size_t BlockChainState::DeltaState::push_amount_output( |
| 72 | Amount amount, BlockOrTimestamp unlock_time, Height block_height, const PublicKey &pk, bool is_amethyst) { |
nothing calls this directly
no test coverage detected