mirror of
https://github.com/serai-dex/serai.git
synced 2025-12-08 04:09:23 +00:00
CI fixes
Mainly corrects for https://github.com/alloy-rs/alloy/issues/1510 yet also corrects a missing machete ignore.
This commit is contained in:
@@ -299,7 +299,7 @@ impl Wallet {
|
||||
use std::sync::Arc;
|
||||
use ethereum_serai::{
|
||||
alloy::{
|
||||
primitives::{U256, Signature, TxKind},
|
||||
primitives::{U256, Parity, Signature, TxKind},
|
||||
sol_types::SolCall,
|
||||
simple_request_transport::SimpleRequest,
|
||||
consensus::{TxLegacy, SignableTransaction},
|
||||
@@ -389,7 +389,8 @@ impl Wallet {
|
||||
.unwrap();
|
||||
|
||||
let mut bytes = vec![];
|
||||
tx.encode_with_signature_fields(&Signature::from(sig), &mut bytes);
|
||||
let parity = Parity::NonEip155(Parity::from(sig.1).y_parity());
|
||||
tx.encode_with_signature_fields(&Signature::from(sig).with_parity(parity), &mut bytes);
|
||||
|
||||
// We drop the bottom 10 decimals
|
||||
(
|
||||
|
||||
Reference in New Issue
Block a user