File tree Expand file tree Collapse file tree 2 files changed +5
-1
lines changed
packages/adena-extension/src
services/transaction/message/vm Expand file tree Collapse file tree 2 files changed +5
-1
lines changed Original file line number Diff line number Diff line change 1+ export const DEFAULT_GAS_WANTED = 10_000_000 ;
2+
3+ export const TRANSACTION_MESSAGE_SEND_OF_REGISTER = '200000000ugnot' ;
Original file line number Diff line number Diff line change 1+ import { TRANSACTION_MESSAGE_SEND_OF_REGISTER } from '@common/constants/tx.constant' ;
12import { createMessageOfVmCall } from './vm' ;
23
34export const createMessageOfVmRegister = ( info : {
@@ -11,7 +12,7 @@ export const createMessageOfVmRegister = (info: {
1112 value : { caller : string ; send : string ; pkg_path : string ; func : string ; args : string [ ] } ;
1213} => {
1314 const invitor = info . invitor ?? '' ;
14- const send = info . send ?? '200000000ugnot' ;
15+ const send = info . send ?? TRANSACTION_MESSAGE_SEND_OF_REGISTER ;
1516 return createMessageOfVmCall ( {
1617 caller : info . address ,
1718 pkgPath : 'gno.land/r/users' ,
You can’t perform that action at this time.
0 commit comments