Closes #10 Implemented files called general_consts.go to all modules that heavly relied on the duplicated "ClientID : 1"

This commit is contained in:
Gustavo H. M. Silva
2020-09-06 09:16:20 +01:00
parent 23ce8e84c9
commit fd2f51cb12
13 changed files with 50 additions and 58 deletions

View File

@@ -171,7 +171,7 @@ func TestHandleInstantiate(t *testing.T) {
// create with no balance is also legal
initCmd := MsgInstantiateContract{
Sender: creator,
CodeID: CID,
CodeID: firstCodeID,
InitMsg: initMsgBz,
InitFunds: nil,
}
@@ -228,7 +228,7 @@ func TestHandleExecute(t *testing.T) {
initCmd := MsgInstantiateContract{
Sender: creator,
CodeID: CID,
CodeID: firstCodeID,
InitMsg: initMsgBz,
InitFunds: deposit,
}
@@ -339,7 +339,7 @@ func TestHandleExecuteEscrow(t *testing.T) {
initCmd := MsgInstantiateContract{
Sender: creator,
CodeID: CID,
CodeID: firstCodeID,
InitMsg: initMsgBz,
InitFunds: deposit,
}