-
Notifications
You must be signed in to change notification settings - Fork 49
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix weight estimation for RctType::ClsagBulletproof TXs
- Loading branch information
1 parent
3cf0b84
commit 4743ea7
Showing
5 changed files
with
12 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -126,7 +126,7 @@ pub async fn rpc() -> SimpleRequestRpc { | |
SimpleRequestRpc::new("http://serai:[email protected]:18081".to_string()).await.unwrap(); | ||
|
||
// Only run once | ||
if rpc.get_height().await.unwrap() < 100 { | ||
if rpc.get_height().await.unwrap() < 120 { | ||
return rpc; | ||
} | ||
|
||
|
@@ -138,7 +138,7 @@ pub async fn rpc() -> SimpleRequestRpc { | |
); | ||
|
||
// Mine 100 blocks to ensure decoy availability | ||
rpc.generate_blocks(&addr, 100).await.unwrap(); | ||
rpc.generate_blocks(&addr, 120).await.unwrap(); | ||
|
||
rpc | ||
} | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters