mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-05-31 12:11:02 +00:00
Bump substrate & deps (#637)
This commit is contained in:
committed by
Bastian Köcher
parent
820407ee98
commit
58fbd8cb49
@@ -49,7 +49,7 @@ impl SignHeader for AuraHeader {
|
||||
|
||||
let message = self.seal_hash(false).unwrap();
|
||||
let signature = sign(author, message);
|
||||
self.seal[1] = rlp_encode(&signature);
|
||||
self.seal[1] = rlp_encode(&signature).to_vec();
|
||||
self
|
||||
}
|
||||
|
||||
@@ -74,7 +74,7 @@ impl SignTransaction for UnsignedTransaction {
|
||||
stream.append(&signature_v);
|
||||
stream.append(&signature_r);
|
||||
stream.append(&signature_s);
|
||||
stream.out()
|
||||
stream.out().to_vec()
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user