wangyouhua
wangyouhua
Thank for your time. It is io1 type SSD:  There is a partial output of `server_state` command in first post, it is exactly the status when gap happen. Since...
The log during gap happen: [rippled_debug.log](https://raw.githubusercontent.com/code-brewer/shared_writing_resource/main/rippled_debug_20210824_17h.log)
I find the cause by another case that set trustline with a huge value `(9e+51).toString()`. In `node_modules/xrpl/dist/npm/Wallet/index.js` file, inside `checkTxSerialization()` function, the `decoded.LimitAmount.value` is '9000000000000000000000000000000000000000000000000000', while the `txCopy.LimitAmount.value` still is...
Because the doc `https://xrpl.org/currency-formats.html#string-numbers` say we can use scientific notation, without state any limitation. I try to use scientific notation because it is obvious to view power number. Then convert...
Sorry for late response. I'm using third party big number lib to convert exponent data to plain decimal now. It can accept any large or small number. Again, I want...
I also puzzled by the statement from official document. But finall figured out how to make it work. **IMPORTANT: * char do not cover '/' character !** This is the...
Sorry for late response. The solution is to add 'tfSetNoRipple' to the Flags while do TrustSet . ``` const tx = { TransactionType: "TrustSet", Account: hot_wallet.address, LimitAmount: { "currency": tk_name,...
Any progress? I also got this error! Background: Clone demo from > https://github.com/input-output-hk/plutus-starter Then, jump to run `cabal build plutus-starter-pab` without other build operation beforehand. Here is some of my...
> I edited the name of the issue to help anybody that is trying to find this. Hope you don't mind Not at all. Thanks for your reply.
@GuidoDipietro I have just try scep256k1 test on devnet, it failed. Here is my client code: https://gist.github.com/code-brewer/8b7edd86a0c327341fa6aff18171f0d2 Major modification is change the person account to be the same as provider...