reduce number of gsfa sigs

This commit is contained in:
GroovieGermanikus 2024-06-19 06:59:58 +02:00
parent ecd3452179
commit 05b88d0438
No known key found for this signature in database
GPG Key ID: 5B6EB831A5CD2015
1 changed files with 1 additions and 1 deletions

View File

@ -267,7 +267,7 @@ async fn rpc_get_signatures_for_address(rpc_client: Arc<RpcClient>) {
// 42
debug!("Signatures for Address {}: {:?}", address, signatures.len());
assert!(signatures.len() > 10, "signatures count is too low");
assert!(signatures.len() >= 1, "signatures count is too low");
}
async fn websocket_account_subscribe(rpc_url: Url) {