Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion not-so-smart-contracts/cosmos/non_determinism/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
Non-determinism in conensus-relevant code will cause the blockchain to halt.
There are quite a few sources of non-determinism, some of which are specific to the Go language:

- [`range` iterations over an unordered map or other operations involving unordered structures](https://lev.pm/posts/2020-04-18-golang-map-randomness/)
- [`range` iterations over an unordered map or other operations involving unordered structures](https://go.dev/blog/maps#iteration-order)
- [Implementation (platform) dependent types like `int`](https://go.dev/ref/spec#Numeric_types) or `filepath.Ext`
- [goroutines and `select` statement](https://github.com/golang/go/issues/33702)
- [Memory addresses](https://github.com/cosmos/cosmos-sdk/issues/11726#issuecomment-1108427164)
Expand Down