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.
1 parent 1122875 commit de02a2dCopy full SHA for de02a2d
crates/erc20_payment_lib/src/lib.rs
@@ -16,3 +16,5 @@ pub mod faucet_client;
16
mod sender;
17
pub mod server;
18
pub mod signer;
19
+
20
+pub use erc20_payment_lib_common::*;
crates/erc20_payment_lib/src/runtime.rs
@@ -166,6 +166,21 @@ impl StatusTracker {
166
*old_missing = *new_missing;
167
return true;
168
}
169
170
+ (
171
+ Web3RpcError {
172
+ chain_id: id1,
173
+ error: err1,
174
+ },
175
176
+ chain_id: id2,
177
+ error: err2,
178
179
+ ) if id1 == id2 => {
180
+ err1.clear();
181
+ err1.push_str(err2);
182
+ return true;
183
+ }
184
_ => {}
185
186
0 commit comments