Angshuman Halder

Results 19 comments of Angshuman Halder

Did you guys find any workaround to this? I was trying to dockerize my app and stuck in the deploy phase as the cli doesn't take any default input for...

@idea404 thanks. I am able to automate the deploy and build processes. 😄

Sure. Would rollback the ordering. Actually When I raised this PR initially I had conflicts which upon resolving messed up the ordering of the functions. I will revert it to...

Sure. Let me resolve conflicts and revert formatting changes. Give me few days.

Hey @gavv reverted the formatting changes. Also short summary - 1. `json.Unmarshal()` is removed and instead we are using `json.Decode()` 2. Numbers are converted to `big.Float` from `json.Number()` only when...

Hey @gavv can assign this to me? I am little busy with switching jobs but this problem seems interesting. Would pickup as soon as I get some time.

Hey @gavv converting ```go type Number struct { noCopy noCopy chain *chain value float64 } ``` to ```go type Number struct { noCopy noCopy chain *chain value big.Float } ```...

Hey @gavv I have few questions. 1. There are certain deprecated functions that uses `newNumber()` should those be replaced too? 2. rework JSON decoding: find places where we decode JSON:...

So let's suppose we have this function - ```go func canonValue(opChain *chain, in interface{}) (interface{}, bool) { b, err := json.Marshal(in) if err != nil { opChain.fail(AssertionFailure{ Type: AssertValid, Actual:...

Understood. Thanks. 😄