mirror of
https://github.com/serai-dex/serai.git
synced 2024-11-16 17:07:35 +00:00
Add hex as a dependency to serai-client
This commit is contained in:
parent
88a1726399
commit
f58478ad87
2 changed files with 2 additions and 1 deletions
|
@ -19,6 +19,7 @@ thiserror = { version = "1", optional = true }
|
|||
|
||||
futures = "0.3"
|
||||
|
||||
hex = "0.4"
|
||||
scale = { package = "parity-scale-codec", version = "3" }
|
||||
scale-info = { version = "2", optional = true }
|
||||
|
||||
|
|
|
@ -204,7 +204,7 @@ impl Serai {
|
|||
.0
|
||||
.rpc()
|
||||
.deref()
|
||||
.request::<[u8; 32]>("author_submitExtrinsic", subxt::rpc::rpc_params![tx])
|
||||
.request::<String>("author_submitExtrinsic", subxt::rpc::rpc_params![hex::encode(tx)])
|
||||
.await
|
||||
// Drop the hash, which is the hash of the raw extrinsic, as extrinsics are allowed to share
|
||||
// hashes and this hash is accordingly useless/unsafe
|
||||
|
|
Loading…
Reference in a new issue