mirror of
https://github.com/logos-blockchain/lssa.git
synced 2026-01-04 06:13:10 +00:00
fix: merge ci fix
This commit is contained in:
parent
c95c4b2f16
commit
e351279278
1
Cargo.lock
generated
1
Cargo.lock
generated
@ -3025,6 +3025,7 @@ version = "0.1.0"
|
|||||||
dependencies = [
|
dependencies = [
|
||||||
"clap",
|
"clap",
|
||||||
"nssa",
|
"nssa",
|
||||||
|
"nssa_core",
|
||||||
"tokio",
|
"tokio",
|
||||||
"wallet",
|
"wallet",
|
||||||
]
|
]
|
||||||
|
|||||||
@ -5,6 +5,7 @@ edition = "2024"
|
|||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
nssa.workspace = true
|
nssa.workspace = true
|
||||||
|
nssa_core.workspace = true
|
||||||
wallet.workspace = true
|
wallet.workspace = true
|
||||||
|
|
||||||
tokio = { workspace = true, features = ["macros"] }
|
tokio = { workspace = true, features = ["macros"] }
|
||||||
|
|||||||
@ -356,7 +356,7 @@ impl Token<'_> {
|
|||||||
PrivacyPreservingAccount::PrivateOwned(holder_account_id),
|
PrivacyPreservingAccount::PrivateOwned(holder_account_id),
|
||||||
],
|
],
|
||||||
&instruction_data,
|
&instruction_data,
|
||||||
&program,
|
&program.into(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(resp, secrets)| {
|
.map(|(resp, secrets)| {
|
||||||
@ -382,7 +382,7 @@ impl Token<'_> {
|
|||||||
PrivacyPreservingAccount::Public(holder_account_id),
|
PrivacyPreservingAccount::Public(holder_account_id),
|
||||||
],
|
],
|
||||||
&instruction_data,
|
&instruction_data,
|
||||||
&program,
|
&program.into(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(resp, secrets)| {
|
.map(|(resp, secrets)| {
|
||||||
@ -409,7 +409,7 @@ impl Token<'_> {
|
|||||||
PrivacyPreservingAccount::PrivateOwned(holder_account_id),
|
PrivacyPreservingAccount::PrivateOwned(holder_account_id),
|
||||||
],
|
],
|
||||||
&instruction_data,
|
&instruction_data,
|
||||||
&program,
|
&program.into(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(resp, secrets)| {
|
.map(|(resp, secrets)| {
|
||||||
@ -479,7 +479,7 @@ impl Token<'_> {
|
|||||||
PrivacyPreservingAccount::PrivateOwned(holder_account_id),
|
PrivacyPreservingAccount::PrivateOwned(holder_account_id),
|
||||||
],
|
],
|
||||||
&instruction_data,
|
&instruction_data,
|
||||||
&program,
|
&program.into(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(resp, secrets)| {
|
.map(|(resp, secrets)| {
|
||||||
@ -509,7 +509,7 @@ impl Token<'_> {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
&instruction_data,
|
&instruction_data,
|
||||||
&program,
|
&program.into(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(resp, secrets)| {
|
.map(|(resp, secrets)| {
|
||||||
@ -535,7 +535,7 @@ impl Token<'_> {
|
|||||||
PrivacyPreservingAccount::Public(holder_account_id),
|
PrivacyPreservingAccount::Public(holder_account_id),
|
||||||
],
|
],
|
||||||
&instruction_data,
|
&instruction_data,
|
||||||
&program,
|
&program.into(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(resp, secrets)| {
|
.map(|(resp, secrets)| {
|
||||||
@ -562,7 +562,7 @@ impl Token<'_> {
|
|||||||
PrivacyPreservingAccount::PrivateOwned(holder_account_id),
|
PrivacyPreservingAccount::PrivateOwned(holder_account_id),
|
||||||
],
|
],
|
||||||
&instruction_data,
|
&instruction_data,
|
||||||
&program,
|
&program.into(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(resp, secrets)| {
|
.map(|(resp, secrets)| {
|
||||||
@ -593,7 +593,7 @@ impl Token<'_> {
|
|||||||
},
|
},
|
||||||
],
|
],
|
||||||
&instruction_data,
|
&instruction_data,
|
||||||
&program,
|
&program.into(),
|
||||||
)
|
)
|
||||||
.await
|
.await
|
||||||
.map(|(resp, secrets)| {
|
.map(|(resp, secrets)| {
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user