Alessio Treglia
0ba4e3a630
types/errors: make Wrap() work like github.com/pkg/errors.Wrap
...
Wrap(ErrInsufficientFunds, "40 < 500") returns strings like
"insufficient funds: 40 < 50". Although he function syntax
fits perfectly SDK app developers use case and as such it
should not be changed, the interface is still counter-intuitive
as most Golang developers may reasonably expect a different
result similar to what other popular libraries' (see [1])
would produce (e.g. "40 < 500: insufficient funds").
Follow up PR of #5876 .
[1] https://godoc.org/github.com/pkg/errors#Wrapf
2020-03-28 00:19:44 +01:00
Aleksandr Bezobchuk
6135912e53
JSON Proto changes
2020-03-26 12:46:10 -04:00
Aleksandr Bezobchuk
2978de90e1
Fix MarshalIndentFromJSON
2020-03-25 15:59:29 -04:00
Alexander Bezobchuk
37885b8d38
Merge branch 'master' into bez/tx-client-proto-i
2020-03-25 14:25:58 -04:00
Aleksandr Bezobchuk
3e0cf99e81
Finish remaining x/bank REST handlers
2020-03-25 14:23:34 -04:00
Aleksandr Bezobchuk
17b68fb365
Prep PostProcessResponseBare and PostProcessResponse
2020-03-25 13:20:29 -04:00
Aleksandr Bezobchuk
3ecc461385
Implement and use MarshalIndentFromJSON
2020-03-25 13:03:14 -04:00
Federico Kunze
9cce836c08
crypto/keys: move keybase and keyring to crypto/keyring/ dir ( #5866 )
...
* crypto/keys: move keybase and keyring to crypto/keyring/ dir
* Update client/keys/root.go
* Update crypto/keyring/errors.go
* Update crypto/keyring/keybase.go
* Update crypto/keyring/options.go
* format
* changelog
* fix build
* format
* lint
2020-03-25 15:20:36 +00:00
Jonathan Gimeno
49102b1d98
Remove dependency of types/module package on x/simulation ( #5835 )
...
Closes : #5724
2020-03-23 12:55:44 +01:00
Marko
d657513741
lint: various linting fixs ( #5825 )
...
* lint: various linting fixs
Signed-off-by: Marko Baricevic <marbar3778@yahoo.com>
* more linting
* more linting fixes
* more errchecking
* comment out errcheck for now
* undo error check
* address some comments
* remore require error
* change delete to batch delete
Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
2020-03-20 19:24:18 +00:00
Federico Kunze
eeea5ebf89
baseapp: add sdk.Result to simulation response
2020-03-19 20:03:49 -03:00
Alessio Treglia
3db39cda3c
Fix various linter warnings ( #5824 )
2020-03-18 12:59:08 +00:00
Aleksandr Bezobchuk
62dbd4a9be
Merge branch 'master' into bez/proto-client-init
2020-03-13 14:00:47 -04:00
Aleksandr Bezobchuk
7838d750e1
Update godoc
2020-03-13 09:58:53 -04:00
Aleksandr Bezobchuk
217cae2021
DRY code
2020-03-13 09:57:15 -04:00
Aleksandr Bezobchuk
b38d3ae69a
Update ADR and types
2020-03-12 15:35:22 -04:00
Alessio Treglia
39f416faa3
Simplify flaky test case and disable parallelism ( #5793 )
...
* Simplify flaky test casea and disable parallelism
* Fix failing test
Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com>
2020-03-12 14:46:55 +00:00
Alessio Treglia
2de4775a25
types/rest: add unit tests ( #5779 )
...
* types/rest: add unit tests
Drop unused functions:
- ParseQueryParamBool()
- ParseInt64OrReturnBadRequest()
* Fix test
* Disable parallelism
* Reintroduce @fedekunze ParseQueryParamBool
* Don't count Name() calls to fix flaky tests
2020-03-10 18:53:25 +00:00
Alessio Treglia
e4209bd1f1
Attempt to fix flaky tests
2020-03-05 16:37:27 +00:00
Alessio Treglia
da5c6ced1d
types: add test cases ( #5747 )
...
Upgrade gomock dependency.
2020-03-04 17:49:59 +00:00
Alessio Treglia
bfac2a9342
fix types.ChainAnteDecorators() panic ( #5742 )
...
* fix types.ChainAnteDecorators() panic
ChainAnteDecorators() panics when no arguments are supplied.
This change its behaviour and the function now returns a nil
AnteHandler in case no AnteDecorator instances are supplied.
Closes : #5741
* Append Terminator to non-terminated chains.
* Fix test case
2020-03-03 16:57:33 +00:00
Alessio Treglia
3349c971ae
increase types/module coverage up to 80% ( #5740 )
...
Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
2020-03-03 13:38:46 +00:00
Alessio Treglia
e0d029388d
fix DiffKVStores(), store/types gets 100% coverage ( #5730 )
...
* fix DiffKVStores(), store/types gets 100% coverage
DiffKVStores() used to return duplicated entries
in some cases.
Add test cases, aiming to reach 100% coverage for
store package.
Remove duplicate Cp function from the store package.
Same functionality is provided by types.CopyBytes().
* More test cases
Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
2020-03-02 00:27:03 +00:00
Alessio Treglia
5a2e59ebb2
Exclude proto files from format ( #5706 )
...
* Don't change proto files on make format
The format target does not need to depend on tools.
Thus remove dependency.
* Run make format
Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
2020-02-27 07:53:22 -03:00
Alexander Bezobchuk
238928ed50
Merge PR #5688 : Proto Option Updates
2020-02-21 11:31:16 +01:00
Anil Kumar Kammari
883c1a2bc1
Merge PR #5627 : Regen Network/Slashing protobuf
2020-02-20 01:04:13 +01:00
Federico Kunze
4aa078b5f3
x/ibc ICS24 ( #5588 )
...
* x/ibc ICS24
* changelog
* move regex to /types
* address @alexanderbez comments
Co-authored-by: Jack Zampolin <jack.zampolin@gmail.com>
Co-authored-by: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
2020-02-19 10:56:22 +01:00
Alexander Bezobchuk
a63de303b8
Merge PR #5665 : Bump Module ABCI Error Codes
2020-02-18 14:43:00 +01:00
Alexander Bezobchuk
794a496892
Merge PR #5533 : Protobuf: x/auth & x/supply
2020-02-18 13:50:13 +01:00
Alessio Treglia
8a74dcafb5
Merge PR #5656 : Make golangci-lint happy again
2020-02-17 17:30:18 +01:00
Alexander Bezobchuk
9b3296be79
Merge PR #5655 : Fix TestParseHTTPArgs
2020-02-17 14:46:48 +01:00
Gerry Agbobada
235aa6c091
Merge PR #5648 : Add min-height and max-height filters to TxSearch
2020-02-17 04:17:34 -05:00
Alexander Bezobchuk
53bf2271d5
Merge PR #5600 : Migrate x/staking to Protobuf
2020-02-06 14:21:02 -05:00
Erik Grinaker
a7f25ade03
Merge PR #5613 : update to golangci-lint v1.23.3
...
Co-authored-by: Jack Zampolin <jack.zampolin@gmail.com>
2020-02-05 11:32:45 -08:00
Federico Kunze
5a0a36a8c9
Merge Pr #5585 : client and types additions for IBC
2020-01-30 10:13:42 -05:00
Alessio Treglia
deea89e52c
Add convenience functions {,Must}Bech32ifyAddressBytes ( #5581 )
2020-01-29 10:48:53 +01:00
Alexander Bezobchuk
26d6e49d6a
Merge PR #5491 : Protobuf Introduction + Types
2020-01-24 10:32:00 -05:00
Alessio Treglia
d0ff973386
Merge PR #5562 : Remove KeyringServiceName from the sdk.Config struct
2020-01-23 13:47:11 -05:00
Alexander Bezobchuk
c1991e31bd
Merge PR #5527 : Bump Tendermint Version to v0.33.0
...
* Bump Tendermint version to v0.33.0
* Deprecate old cmn package with new packages
* Update update DB APIs
* More DB updates
* Bump IAVL to v0.13.0
* Handle error returned by iavl.NewMutableTree
* Fix some IAVL stuffs
* Update IAVL
* More updates
* Passing tests
* Fix unit tests
Co-authored-by: Jack Zampolin <jack.zampolin@gmail.com>
2020-01-16 13:46:51 -08:00
Alexander Bezobchuk
869531ca92
Merge PR #5495 : Replace Redundant Bech32 PubKey Functions
2020-01-09 09:04:28 -05:00
Ferenc Fabian
67c2acd75a
Merge PR #5484 : Add errors.Is support to the wrappedError
2020-01-08 13:41:10 -05:00
Matthew Slipper
2968247d9c
Merge PR #5479 : Add convenience Incr() and Decr() methods to Uint
2020-01-07 10:17:01 -05:00
Sunny Aggarwal
3fc6240c94
Merge PR #5447 : Added nth root function to sdk.Decimal type
2020-01-04 15:16:12 -05:00
Sunny Aggarwal
17d639aa60
Merge PR #5452 : Pass in sdk.Context to router.Route()
2020-01-04 14:50:38 -05:00
Ferenc Fabian
066dd1114f
Merge PR #5449 : Add New constructor for the DecCoin
2020-01-03 15:44:53 -05:00
Alexander Bezobchuk
fe9e50dd34
Merge PR #5465 : Remove dep Events from TxResponse type
2020-01-03 10:25:58 -05:00
Alexander Bezobchuk
9a183ffbcc
Merge PR #5421 : Refactor Error Handling
2019-12-27 12:57:54 -05:00
Dmitry Shulyak
b314b851e4
Merge PR #5435 : Added iterator that allows to read only requested values
2019-12-26 10:33:34 -05:00
Kevin Davis
876beef634
Merge PR #5428 : Add mod, exponentiation for uint
2019-12-19 16:46:43 -05:00
Federico Kunze
fb0a2c46d3
fix DecCoins constructor ( #5410 )
...
* fix decCoins
* minor changes for standardization
* changelog
* add test cases
2019-12-16 19:10:18 -03:00
Alexander Bezobchuk
aa28dca517
Merge PR #5399 : Fix Uint#LTE
2019-12-12 11:44:54 -05:00
Alexander Bezobchuk
9f03b57fe3
Merge PR #5359 : Params Validation
2019-12-10 11:48:57 -05:00
Sunny Aggarwal
3c2ace9510
Merge PR #5360 : Sortable Decimal Bytes
2019-12-05 12:55:43 -05:00
Federico Kunze
722a633f54
Sim refactor 3: move weighted operations to modules ( #4869 )
...
* move GenesisState generators to modules
* minor change on slashing genState generator
* move simulation params back to modules (#4839 )
move simulation params back to modules (#4839 )
* cleanup params
* various fixes
* move store decoders to modules
* fix
* module pattern
* split generators for param change
* param changes
* revert util pkg
* banksim
* compile
* update Decoders params
* fix
* address @colin-axner comments
* move weighted operations to modules
* cleanup
* cleanup
* Update cmd_test.go
* simulation manager
* mino fixes
* cleanup
* add GenerateGenesisState to simulation manager
* Apply suggestions from code review
Co-Authored-By: frog power 4000 <rigel.rozanski@gmail.com>
* address @rigelrozanski comments
* changelog
* Apply suggestions from code review
Co-Authored-By: colin axner <colinaxner@berkeley.edu>
* restructure modules simulation pkgs
* remove cycle deps
* rename funcs and add missing params
* modularize simulator param changes
* build
* fix params keys
* make format
* various fixes
* fix tests
* minor updates to sim_test
* cleanup
* more cleanup
* modularize genesis generators
* minor cleanup
* remove cdc from generators
* remove cdc
* add get or generate
* fix non-determinism in simulation
* changelog and x/simulation godoc
* cleanup operations
* update operations to use baseapp
* updates and cleanup operations
* update operations
* restructure sim ops params
* rename sim /operations/msg.go to /operations.go
* move GenTx to a helper pkg to avoid circle deps
* rm msg.ValidateBasic
* changelog
* random fees; delete auth's DeductFees sim operation
* add chain-id for sig verification
* Update x/simulation/account.go
Co-Authored-By: colin axner <colinaxner@berkeley.edu>
* fix bank, gov and distr errors
* fix staking and slashing errors; increase prob for send enabled
* increase gas x10
* make format
* fix some distr and staking edge cases
* fix all edge cases
* golang ci
* rename acc vars; default no fees to 0stake
* cleanup; check for exchange rate and skip invalid ops
* fixes
* check for max entries
* add pubkey to genaccounts
* fix gov bug
* update staking sim ops
* fix small redelegation error
* fix small self delegation on unjail
* rm inf loop on random val/accs
* copy array
* add ok boolean to RandomValidator return values
* format
* build
* add WeightedOperations to AppModuleSimulation
* define each module proposals content as part of the module pattern
* Update x/bank/simulation/operations.go
Co-Authored-By: colin axner <colinaxner@berkeley.edu>
* Update simapp/helpers/test_helpers.go
Co-Authored-By: colin axner <colinaxner@berkeley.edu>
* address @colin-axner comments
* add genaccount pubkey validation
* fix test
* update operations and move RandomFees to x/simulation
* update gov ops
* address @alexanderbez comments
* avoid modifications to config
* reorder params
* modularized sim operations working
* changelog
* Update types/module/simulation.go
Co-Authored-By: frog power 4000 <rigel.rozanski@gmail.com>
* Update x/simulation/params.go
Co-Authored-By: frog power 4000 <rigel.rozanski@gmail.com>
* Update x/simulation/params.go
Co-Authored-By: frog power 4000 <rigel.rozanski@gmail.com>
* update /types/module
* Update x/distribution/simulation/genesis.go
Co-Authored-By: Alexander Bezobchuk <alexanderbez@users.noreply.github.com>
* remove named return values
* ensure all operations are simulated
* golangci
* add nolint
* disable whitespace and funlen linter
* disable godox
* add TODO on unjail
* update ops weights
* remove dup
* update godoc
* remove unused func
* build fixes
* move weights to the same file
* scopelint
* changelog
* address @AdityaSripal comments
* address @alexanderbez comments
2019-12-05 10:29:54 +01:00
James Prestwich
c89dee502a
Add BigInt() to Uint struct in types/uint.go, update tests to check ident ( #5325 )
2019-11-19 13:39:33 +11:00
Alexander Bezobchuk
95ddc242ad
Merge PR #5240 : x/evidence module implementation
2019-11-06 14:08:02 -07:00
Aditya
4cd18bcf35
Merge PR 5196: RecheckTx Optimizations
2019-10-23 10:43:58 -04:00
Henrik Aasted Sørensen
7581871b9b
Merge PR #5227 : Use existing struct
2019-10-21 10:36:31 -04:00
Sunny Aggarwal
d7a08ce5f2
Merge PR #5219 : Added sqrt function to sdk.Decimal type
2019-10-18 12:25:07 -04:00
Marko
b9490f2d93
Merge PR #5203 : Add more linters
2019-10-17 09:47:35 -04:00
Xuefeng Zhu
3428291a61
Merge PR #5160 : Simply Dec and Int sign check
...
* Simply Dec and Int sign check
* address comment
2019-10-14 16:05:42 -04:00
Marko
9f3789157e
Merge PR #5192 : golangcI-lint updates & set static version to 1.19
2019-10-14 11:43:19 -04:00
Aditya
c0223a4414
Merge PR #5006 : Modular AnteDecorator
2019-10-10 08:46:09 -04:00
Marko
cf06d3d7df
Merge PR #5111 : Add linters from new golangci version
2019-09-30 19:06:07 -04:00
Alessio Treglia
3e6562ce45
Merge PR #5097 : Add keys migrate command
...
Add new command to assist users migrate their keys from the legacy
on-disk keybase to the new OS keyring-based implementation.
Ref #4754
2019-09-30 11:49:12 -04:00
Marko
936cffef40
Merge PR #5055 : Added Prealloc, Gosec, Golint linters
2019-09-17 12:13:26 -04:00
Marko
6684cdf3e5
Merge PR #5048 : Fix linters and add golint
2019-09-16 13:11:17 -04:00
Alexander Bezobchuk
9eb5375fda
Merge PR #5032 : Add Events to ABCIMessageLog
2019-09-12 11:05:27 -04:00
Timothy Chen
5bcab79e8a
Merge PR #4996 : Expose precheck errors from tx
2019-09-11 14:56:36 -04:00
Alexander Bezobchuk
f010d2c6f1
Merge PR #4748 : Write-Through Inter-Block Cache
2019-09-04 13:33:32 -04:00
Federico Kunze
45b25ceaae
Merge PR #4838 : Sim refactor 2 - Move GenesisState generators to modules
2019-08-28 10:58:25 -04:00
Marko
3a4f1fc4d4
Merge PR #4881 : Linting Galore
2019-08-19 12:06:27 -04:00
colin axner
3eac2707b2
Merge PR #4908 : Various goreport fixes
2019-08-15 09:54:10 -04:00
Federico Kunze
c441ce2fab
Merge PR #4847 : Sim refactor 1 move store decoders to modules
...
* move store decoders to modules
* fix
* module pattern
* compile
* update Decoders params
* fix
* address @colin-axner comments
* Update cmd_test.go
* simulation manager
* mino fixes
* cleanup
* Apply suggestions from code review
Co-Authored-By: frog power 4000 <rigel.rozanski@gmail.com>
* address @rigelrozanski comments
* changelog
* Apply suggestions from code review
Co-Authored-By: colin axner <colinaxner@berkeley.edu>
* restructure modules simulation pkgs
* address @alexanderbez comments
* fix
2019-08-13 18:16:03 -04:00
Alexander Bezobchuk
0bcc7c9b7a
Merge PR #4873 : Set New EventManager in Context#CacheContext
2019-08-08 12:32:05 -04:00
colin axner
865d473eb4
Merge PR #4832 : print all failed invariants only
2019-08-05 14:21:44 -04:00
Ethan Frey
a73b3f5e97
Merge PR #4849 : Result from error
2019-08-05 14:17:37 -04:00
Alexander Bezobchuk
4b354a782b
Merge PR #4840 : Various Updates for Gaia
2019-08-03 09:56:15 -04:00
Alexander Bezobchuk
451535bd79
Merge PR #4837 : Cleanup node_info Endpoint
2019-08-02 11:52:55 -04:00
Alexander Bezobchuk
861e4798ad
Merge PR #4836 : Upgrade Tendermint and IAVL
2019-08-02 09:20:39 -04:00
Ethan Frey
68dd969b4d
Merge PR #4821 : Port weave errors package
2019-07-31 12:37:11 -04:00
frog power 4000
8f09f1e2b3
Merge PR #4800 : Organize store keys in app.go into a map
2019-07-31 06:59:16 -07:00
Jack Zampolin
0ba74bb4b7
Merge PR #4777 : Fix Height Queries
2019-07-25 17:45:13 -07:00
Alexander Bezobchuk
2b3d78599e
Merge PR #4772 : Add New Events Attributes
2019-07-24 15:50:34 -07:00
kevlubkcm
231fefadb3
Merge PR #4774 : fix typo in panic message
2019-07-24 12:13:35 -07:00
Federico Kunze
e85a734a57
update x/genaccounts to match module spec ( #4759 )
2019-07-22 16:26:42 +01:00
Federico Kunze
b17f8f8df7
Merge PR #4729 : Extend DiffKVStores to return a list of KVPairs
2019-07-19 16:05:37 +02:00
Ethan Frey
d3bb9f50e2
Simplify context ( #4706 )
...
Replace complex Context construct with a simpler immutible struct.
Only breaking change is not to support `Value` and `GetValue` as first class calls.
We do embed ctx.Context() as a raw context.Context instead to be used as you see fit.
2019-07-16 14:40:42 +01:00
colin axner
8b49b58812
Merge PR #4710 : Update Invariant Printing
2019-07-15 09:56:38 -07:00
colin axner
280734d0e3
collect all invariants for a block before stopping ( #4707 )
2019-07-11 11:56:43 +01:00
Alexander Bezobchuk
ef7e266c6f
Merge PR #4667 : Sort events by type
2019-07-02 13:16:30 -04:00
colin axner
8d8fd9df1a
generalize query response with height ( #4573 )
...
Addition to #4536 , no longer specific to account queries.
Allows for validator endpoints to return height in the response.
Closes : #4609
2019-07-01 17:48:13 +01:00
Alexander Bezobchuk
a485b9a263
Merge PR #4648 : Flatten events by type when stringified
2019-06-30 16:31:09 -04:00
Aditya
f9dea984c2
Merge PR #4629 : Emit Warning Events when Validator Misses Blocks
2019-06-28 13:53:30 -04:00
Alexander Bezobchuk
67f6b02118
Merge PR #4541 : Events Tracking / Tendermint v0.32.0 Update
...
* Update Tendermint to v0.32.0-dev0
* Initial refactor of tags
* Update event types and add unit tests
* Refactor context
* Update module manager
* Update result godoc
* Implement ToABCIEvents
* Update BaseApp
* Minor cleanup
* Fix typo
* Update x/bank message handler
* Update x/bank keeper
* Update x/bank
* Update x/bank events docs
* Update x/crisis module events
* Reset context with events on each message exec
* Update x/distribution events and docs
* Update BaseApp to not set empty events manually
* Implement simple event manager
* Update module manager
* Update modules to use event manager
* Update x/gov module to use events
* Update events docs
* Update gov queries and crisis app module
* Update bank keeper
* Add events to minting begin blocker
* Update modules to use types/events.go
* Cleanup x/mint
* Update x/staking events
* Update x/staking events
* Update events to have sender part of message.sender
* Fix build
* Fix module unit tests
* Add pending log entry
* Update deps
* Update x/crisis/types/events.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/bank/internal/types/events.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/distribution/types/events.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/mint/internal/types/events.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/slashing/types/events.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/staking/types/events.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/gov/handler.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/gov/handler.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/mint/abci.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/mint/abci.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/slashing/handler.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/staking/handler.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/slashing/handler.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/staking/handler.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/staking/handler.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Update x/staking/handler.go
Co-Authored-By: Federico Kunze <31522760+fedekunze@users.noreply.github.com>
* Upgrade TM to v0.32.0-dev1
* Update events as strings
* Update Tendermint to v0.32.0-dev2
* Fix BaseApp unit tests
* Fix unit tests
* Bump tendermint version to v0.32.0
* typos
2019-06-26 18:03:25 +02:00
Ethan Frey
891eb8eec5
Merge PR #4613 : Only change rootmultistore hash when substore hashes change
2019-06-25 13:11:22 -04:00
Marko
4ffabb65a5
lint add deadcode unused ( #4606 )
...
Added deadcode and unused linters to the repo, it
helped find some unused code.
Ref #4589
2019-06-21 17:18:01 +02:00
colin axner
84a2582877
remove BlockHeight in context ( #4580 )
...
closes #4578
2019-06-19 00:11:31 +02:00
Alessio Treglia
55928ad165
Fix BaseAccount's YAML serialization ( #4577 )
2019-06-18 18:03:16 +02:00
colin axner
314af42d92
Reintroduce Coin.IsValid() ( #4558 )
...
Closes #4556
2019-06-18 18:02:31 +02:00