File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1452,7 +1452,7 @@ pub async fn generate_did_proof_from_chain(
1452
1452
. ok_or ( WalletError :: UnknownCoin ) ?;
1453
1453
1454
1454
let _parent_spend = peer
1455
- . request_puzzle_and_solution ( parent_coin_state. coin . coin_id ( ) , parent_spend_height as u32 )
1455
+ . request_puzzle_and_solution ( parent_coin_state. coin . coin_id ( ) , parent_spend_height)
1456
1456
. await ?
1457
1457
. map_err ( |_| WalletError :: RejectPuzzleSolution ) ?;
1458
1458
@@ -1591,7 +1591,7 @@ pub async fn resolve_did_string_and_generate_proof(
1591
1591
. ok_or ( WalletError :: UnknownCoin ) ?;
1592
1592
1593
1593
let launcher_spend = peer
1594
- . request_puzzle_and_solution ( launcher_state. coin . coin_id ( ) , launcher_spend_height as u32 )
1594
+ . request_puzzle_and_solution ( launcher_state. coin . coin_id ( ) , launcher_spend_height)
1595
1595
. await ?
1596
1596
. map_err ( |_| WalletError :: RejectPuzzleSolution ) ?;
1597
1597
@@ -1660,7 +1660,7 @@ pub async fn resolve_did_string_and_generate_proof(
1660
1660
// If spent, find the child DID coin
1661
1661
let spend_height = coin_state. spent_height . unwrap ( ) ;
1662
1662
let spend = peer
1663
- . request_puzzle_and_solution ( current_did_coin. coin_id ( ) , spend_height as u32 )
1663
+ . request_puzzle_and_solution ( current_did_coin. coin_id ( ) , spend_height)
1664
1664
. await ?
1665
1665
. map_err ( |_| WalletError :: RejectPuzzleSolution ) ?;
1666
1666
You can’t perform that action at this time.
0 commit comments