We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 3981add + a750d8c commit 9d2969bCopy full SHA for 9d2969b
Cargo.toml
@@ -92,8 +92,8 @@ fake = "=2.9.2"
92
ff = { version = "=0.13.0", default-features = false }
93
flate2 = "=1.0.33"
94
flume = "=0.10.14"
95
-futures = "=0.3.30"
96
-futures-util = "=0.3.30"
+futures = "=0.3.31"
+futures-util = "=0.3.31"
97
hex = "=0.4.3"
98
http-body-util = "=0.1.2"
99
http_req = "=0.8.1"
node-data/src/events/transactions.rs
@@ -121,7 +121,10 @@ impl Serialize for Transaction {
121
);
122
}
123
if let Some(sender) = tx.moonlight_sender() {
124
- fee.insert("sender", hex::encode(sender.to_bytes()));
+ fee.insert(
125
+ "sender",
126
+ bs58::encode(sender.to_bytes()).into_string(),
127
+ );
128
129
fee
130
};
0 commit comments