chore(interop): update u5c spec to v0.7.0 (#489)

This commit is contained in:
Santiago Carmuega 2024-07-15 18:25:40 -03:00 committed by GitHub
parent 9f9e088091
commit 8f74238dc5
2 changed files with 4 additions and 1 deletions

View file

@ -279,6 +279,7 @@ impl<C: LedgerContext> Mapper<C> {
u5c::Certificate {
certificate: inner.into(),
redeemer: None, // TODO
}
}
@ -286,6 +287,7 @@ impl<C: LedgerContext> Mapper<C> {
u5c::Withdrawal {
reward_account: Vec::from(x.0).into(),
coin: x.1,
redeemer: None, // TODO
}
}
@ -301,6 +303,7 @@ impl<C: LedgerContext> Mapper<C> {
u5c::Multiasset {
policy_id: x.policy().to_vec().into(),
assets: x.assets().iter().map(|x| self.map_asset(x)).collect(),
redeemer: None, // TODO
}
}