mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 20:29:23 +00:00
Implement get_outputs_in_block for Monero
Uses a dummy view/spend for now, as we don't have wallet management yet.
This commit is contained in:
@@ -32,7 +32,7 @@ trait Coin {
|
||||
async fn max_outputs() -> usize;
|
||||
|
||||
async fn get_height(&self) -> Result<usize, CoinError>;
|
||||
async fn get_outputs_in_block(&self) -> Result<Vec<Self::Output>, CoinError>;
|
||||
async fn get_outputs_in_block(&self, height: usize) -> Result<Vec<Self::Output>, CoinError>;
|
||||
async fn send(
|
||||
&self,
|
||||
payments: &[(Self::Address, u64)]
|
||||
|
||||
Reference in New Issue
Block a user