1
0
Fork 0
mirror of https://github.com/ton-blockchain/ton synced 2025-03-09 15:40:10 +00:00

fix getAccountStateByTransaction (#623)

Co-authored-by: ms <dungeon666master@protonmail.com>
This commit is contained in:
EmelyanenkoK 2023-02-26 11:38:25 +03:00 committed by GitHub
parent c369127ae0
commit f118afab84
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 3 deletions

View file

@ -20,7 +20,7 @@ class TransactionEmulator {
public:
TransactionEmulator(block::Config&& config, int vm_log_verbosity = 0) :
config_(std::move(config)), libraries_(256), vm_log_verbosity_(vm_log_verbosity),
unixtime_(0), lt_(0), rand_seed_(0), ignore_chksig_(false) {
unixtime_(0), lt_(0), rand_seed_(td::BitArray<256>::zero()), ignore_chksig_(false) {
}
struct EmulationResult {