You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
error: tmkms fatal error: parse error: invalid character `.` in type name: `this.is.testString` for key `tx_si
gner.acl` at line 39 column 7
The [[tx_signer]] I used is:
### (Optional) Transaction signer configuration
[[tx_signer]]
chain_id = "test"
schema = "/Users/test/tmkms/.kms_home/test_schema.toml" # See Schema section below
account_address = "test1ptqkekmp9lf4mgw93jsyvy7unugjy3xcp67pwe" # must be in the keyring for this chain
account_number = 526
poll_interval = { blocks = 5 }
source = { protocol = "jsonrpc", uri = "http://localhost:8000/TestRequest" }
rpc = { addr = "tcp://0.0.0.0:26657" }
acl = { msg_type = ["test.tx.TestRequest"] }
seq_file = "test-sequence.toml"
The '.' character can work fine in normal string like the rpc config above but for the acl config it contained in a string inside the "[]" so that I got this error.
I tried many ways like create subtable but still failed with the same error:
I followed https://github.com/iqlusioninc/tmkms/blob/v0.12.2/README.txsigner.md#architecture to config to sign transaction but got this error when parsing the tmkms.toml file:
The [[tx_signer]] I used is:
The '.' character can work fine in normal string like the rpc config above but for the acl config it contained in a string inside the "[]" so that I got this error.
I tried many ways like create subtable but still failed with the same error:
When I try to use nested array of tables:
Then I got the error:
Please help, thanks~
The text was updated successfully, but these errors were encountered: