Skip to content

Commit

Permalink
fix: field access typo
Browse files Browse the repository at this point in the history
  • Loading branch information
rvcas committed Jul 3, 2022
1 parent 8c10f6d commit cf98eaa
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions src/mapper/collect.rs
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
use pallas::{
codec::utils::MaybeIndefArray,
codec::utils::{KeyValuePairs, MaybeIndefArray},
ledger::primitives::{
alonzo::{
AuxiliaryData, MintedBlock, Multiasset, NativeScript, PlutusData, PlutusScript,
Redeemer, TransactionInput, VKeyWitness, Value,
AuxiliaryData, Coin, MintedBlock, Multiasset, NativeScript, PlutusData, PlutusScript,
Redeemer, RewardAccount, TransactionInput, VKeyWitness, Value,
},
babbage::{
LegacyTransacionOutput, PlutusV2Script, PostAlonzoTransactionOutput, TransactionOutput,
Expand Down
2 changes: 1 addition & 1 deletion src/mapper/map.rs
Original file line number Diff line number Diff line change
Expand Up @@ -444,7 +444,7 @@ impl EventWriter {
}

if let Some(withdrawals) = &body.withdrawals {
record.withdrawals = self.collect_withdrawal_records(withdrawals)?.into();
record.withdrawals = self.collect_withdrawal_records(withdrawals).into();
}
}

Expand Down

0 comments on commit cf98eaa

Please sign in to comment.