Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion node-data/src/events/transactions.rs
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,10 @@ impl Serialize for Transaction {
);
}
if let Some(sender) = tx.moonlight_sender() {
fee.insert("sender", hex::encode(sender.to_bytes()));
fee.insert(
"sender",
bs58::encode(sender.to_bytes()).into_string(),
);
}
fee
};
Expand Down
Loading