dfinity / cycles-wallet

DFINITY Cycles Wallet
Apache License 2.0
55 stars 30 forks source link

fix: Limit event history size #139

Closed adamspofford-dfinity closed 2 years ago

adamspofford-dfinity commented 2 years ago

Previously the wallet would record as many events as it could hold. This could result in a call running out of cycles when the vector needed to be reallocated. This sets a cap on events as 10,000 global events and 1,000 canister-specific events per canister.

Fixes #75.